mirror of
https://github.com/ksherlock/ample.git
synced 2024-11-19 02:11:08 +00:00
57a7e24d21
also log path/working directory to the log window.
25 lines
489 B
Objective-C
25 lines
489 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;
|
|
|
|
#endif /* Ample_h */
|