mirror of
https://github.com/ksherlock/ample.git
synced 2024-10-31 15:04:56 +00:00
31 lines
641 B
Objective-C
31 lines
641 B
Objective-C
//
|
|
// 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);
|
|
NSString *SupportDirectoryPath(void);
|
|
|
|
/* NSUserDefaults keys */
|
|
extern NSString *kUseCustomMame;
|
|
extern NSString *kMamePath;
|
|
extern NSString *kMameWorkingDirectory;
|
|
extern NSString *kAutoCloseLogWindow;
|
|
extern NSString *kMameComponentsDate;
|
|
|
|
extern NSString *kDownloadURL;
|
|
extern NSString *kDownloadExtension;
|
|
|
|
extern NSString *kDefaultDownloadURL;
|
|
extern NSString *kDefaultDownloadExtension;
|
|
|
|
#endif /* Ample_h */
|