syncfiles/macos/resources.h
Dietrich Epp 4d4ee214b3 Create classic Mac OS GUI program
The GUI program's project is not checked in. It was compiled and tested
with CodeWarrior Pro 4.

The GUI program allows users to create new synchronization projects,
select folders to synchronize, and save and open projects. The code is
probably broken and buggy, and probably dereferences NULL pointers here
and there, but the basic shell is there.
2022-04-10 04:09:17 -04:00

33 lines
522 B
C

#ifndef MACOS_RESOURCES_H
#define MACOS_RESOURCES_H
#define APPNAME "SyncFiles"
#define kCreator 'SyFl'
#define kTypeProject 'SyPr'
/* ALRT Error dialog */
#define rAlrtError 128
/* 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
/* STR# Error messages. */
#define rSTRS_Errors 128
/* WIND Windows */
#define rWIND_Project 128
#endif