2020-09-01 23:52:11 -04:00
|
|
|
//
|
|
|
|
// Ample.h
|
|
|
|
// Ample
|
|
|
|
//
|
|
|
|
// Created by Kelvin Sherlock on 9/1/2020.
|
|
|
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Ample_h
|
|
|
|
#define Ample_h
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
NSURL *SupportDirectory(void);
|
2020-09-03 22:37:27 -04:00
|
|
|
NSString *SupportDirectoryPath(void);
|
2020-09-01 23:52:11 -04:00
|
|
|
|
|
|
|
/* NSUserDefaults keys */
|
|
|
|
extern NSString *kUseCustomMame;
|
|
|
|
extern NSString *kMamePath;
|
|
|
|
extern NSString *kAutoCloseLogWindow;
|
2020-09-02 19:12:17 -04:00
|
|
|
extern NSString *kMameComponentsDate;
|
2020-09-01 23:52:11 -04:00
|
|
|
|
|
|
|
#endif /* Ample_h */
|