mirror of
https://github.com/depp/syncfiles.git
synced 2024-11-22 03:30:57 +00:00
27 lines
495 B
C
27 lines
495 B
C
// 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.
|
|
#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,
|
|
|
|
iProject_Upload = 1,
|
|
iProject_Download = 2,
|
|
};
|
|
|
|
// Quit the application.
|
|
void QuitApp(void);
|
|
|
|
#endif
|