mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-05 20:05:15 +00:00
43 lines
729 B
R
43 lines
729 B
R
#include "Processes.r"
|
|
#include "Retro68.r"
|
|
|
|
#if 0
|
|
/*
|
|
* By default, Application CODE resources are no longer
|
|
* created by Rez, but rather by Elf2Mac.
|
|
* It is still possible to create a single-segment
|
|
* application this way, though.
|
|
*/
|
|
resource 'CODE' (0) RETRO68_JUMP_TABLE;
|
|
|
|
resource 'CODE' (1) {
|
|
#ifdef BREAK_ON_ENTRY
|
|
breakAtEntry,
|
|
#else
|
|
dontBreakAtEntry,
|
|
#endif
|
|
$$read(FLT_FILE_NAME);
|
|
};
|
|
#endif
|
|
|
|
resource 'SIZE' (-1) {
|
|
dontSaveScreen,
|
|
acceptSuspendResumeEvents,
|
|
enableOptionSwitch,
|
|
canBackground,
|
|
multiFinderAware,
|
|
backgroundAndForeground,
|
|
dontGetFrontClicks,
|
|
ignoreChildDiedEvents,
|
|
is32BitCompatible,
|
|
reserved,
|
|
reserved,
|
|
reserved,
|
|
reserved,
|
|
reserved,
|
|
reserved,
|
|
reserved,
|
|
1024 * 1024,
|
|
1024 * 1024
|
|
};
|