mirror of
https://github.com/jeremysrand/Apple2GSBuildPipeline.git
synced 2025-02-02 00:31:13 +00:00
39 lines
759 B
C
39 lines
759 B
C
|
/*
|
||
|
* ___FILENAME___
|
||
|
* ___PACKAGENAME___
|
||
|
*
|
||
|
* Created by ___FULLUSERNAME___ on ___DATE___.
|
||
|
* Copyright (c) ___YEAR___ ___ORGANIZATIONNAME___. All rights reserved.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef _____PROJECTNAMEASIDENTIFIER________FILEBASENAMEASIDENTIFIER_____
|
||
|
#define _____PROJECTNAMEASIDENTIFIER________FILEBASENAMEASIDENTIFIER_____
|
||
|
|
||
|
|
||
|
#define menuBar 1
|
||
|
|
||
|
#define appleMenu 3
|
||
|
#define fileMenu 4
|
||
|
#define editMenu 5
|
||
|
|
||
|
#define editUndo 250
|
||
|
#define editCut 251
|
||
|
#define editCopy 252
|
||
|
#define editPaste 253
|
||
|
#define editClear 254
|
||
|
|
||
|
#define fileNew 401
|
||
|
#define fileOpen 402
|
||
|
#define fileClose 255
|
||
|
#define fileQuit 256
|
||
|
|
||
|
#define appleAbout 301
|
||
|
|
||
|
#define aboutAlertString 1
|
||
|
|
||
|
#define windowRes 1001
|
||
|
|
||
|
|
||
|
#endif /* defined(_____PROJECTNAMEASIDENTIFIER________FILEBASENAMEASIDENTIFIER_____) */
|