mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-11-20 02:32:28 +00:00
22 lines
600 B
Objective-C
22 lines
600 B
Objective-C
/*
|
|
* Apple // emulator for *ix
|
|
*
|
|
* This software package is subject to the GNU General Public License
|
|
* version 3 or later (your choice) as published by the Free Software
|
|
* Foundation.
|
|
*
|
|
* Copyright 2013-2015 Aaron Culliney
|
|
*
|
|
*/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#define kApple2PrefStartupDiskA @"kApple2PrefStartupDiskA"
|
|
#define kApple2PrefStartupDiskAProtected @"kApple2PrefStartupDiskAProtected"
|
|
#define kApple2PrefStartupDiskB @"kApple2PrefStartupDiskB"
|
|
#define kApple2PrefStartupDiskBProtected @"kApple2PrefStartupDiskBProtected"
|
|
|
|
@interface EmulatorPrefsController : NSWindowController
|
|
|
|
@end
|