mirror of
https://github.com/depp/syncfiles.git
synced 2024-10-31 12:04:44 +00:00
38 lines
752 B
C
38 lines
752 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_RESOURCES_H
|
|
#define MACOS_RESOURCES_H
|
|
|
|
#define APPNAME "SyncFiles"
|
|
|
|
#define kCreator 'SyFl'
|
|
#define kTypeProject 'SyPr'
|
|
|
|
/* ALRT Error dialog */
|
|
#define rAlrtError 128
|
|
#define rAlrtFatal 129
|
|
|
|
/* CNTL Controls */
|
|
#define rCNTL_ChooseFolder 128
|
|
|
|
/* DLOG Dialogs */
|
|
#define rDLOG_OpenFolder 128
|
|
|
|
/* MBAR Menu bar */
|
|
#define rMBAR_Main 128
|
|
|
|
/* MENU Menus */
|
|
#define rMENU_Apple 128
|
|
#define rMENU_File 129
|
|
#define rMENU_Edit 130
|
|
#define rMENU_Project 131
|
|
|
|
/* STR# Error messages. */
|
|
#define rSTRS_Errors 128
|
|
|
|
/* WIND Windows */
|
|
#define rWIND_Project 128
|
|
|
|
#endif
|