mirror of
https://github.com/depp/syncfiles.git
synced 2024-11-22 19:30:49 +00:00
22 lines
297 B
C
22 lines
297 B
C
|
// main.h - Main entry point.
|
||
|
#ifndef MACOS_MAIN_H
|
||
|
#define MACOS_MAIN_H
|
||
|
|
||
|
// Menu item IDs.
|
||
|
enum {
|
||
|
iApple_Info = 1,
|
||
|
|
||
|
iFile_New = 1,
|
||
|
iFile_Open = 2,
|
||
|
iFile_Close = 4,
|
||
|
iFile_Save = 5,
|
||
|
iFile_SaveAs = 6,
|
||
|
iFile_Revert = 7,
|
||
|
iFile_Quit = 9,
|
||
|
};
|
||
|
|
||
|
// Quit the application.
|
||
|
void QuitApp(void);
|
||
|
|
||
|
#endif
|