2022-04-10 08:22:58 +00:00
|
|
|
// Copyright 2022 Dietrich Epp.
|
|
|
|
// This file is part of SyncFiles. SyncFiles is licensed under the terms of the
|
|
|
|
// Mozilla Public License, version 2.0. See LICENSE.txt for details.
|
2022-04-10 08:09:17 +00:00
|
|
|
#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,
|
2023-05-07 05:51:00 +00:00
|
|
|
|
|
|
|
iProject_Upload = 1,
|
|
|
|
iProject_Download = 2,
|
2022-04-10 08:09:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Quit the application.
|
|
|
|
void QuitApp(void);
|
|
|
|
|
|
|
|
#endif
|