2015-07-20 18:05:38 +00:00
|
|
|
#include "Processes.r"
|
|
|
|
#include "Retro68.r"
|
|
|
|
|
2017-09-24 13:40:19 +00:00
|
|
|
#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.
|
|
|
|
*/
|
2015-07-20 18:05:38 +00:00
|
|
|
resource 'CODE' (0) RETRO68_JUMP_TABLE;
|
|
|
|
|
|
|
|
resource 'CODE' (1) {
|
2017-09-23 02:00:30 +00:00
|
|
|
#ifdef BREAK_ON_ENTRY
|
|
|
|
breakAtEntry,
|
|
|
|
#else
|
|
|
|
dontBreakAtEntry,
|
|
|
|
#endif
|
|
|
|
$$read(FLT_FILE_NAME);
|
2015-07-20 18:05:38 +00:00
|
|
|
};
|
2017-09-24 13:40:19 +00:00
|
|
|
#endif
|
2015-07-20 18:05:38 +00:00
|
|
|
|
|
|
|
resource 'SIZE' (-1) {
|
|
|
|
dontSaveScreen,
|
|
|
|
acceptSuspendResumeEvents,
|
|
|
|
enableOptionSwitch,
|
|
|
|
canBackground,
|
|
|
|
multiFinderAware,
|
|
|
|
backgroundAndForeground,
|
|
|
|
dontGetFrontClicks,
|
|
|
|
ignoreChildDiedEvents,
|
|
|
|
is32BitCompatible,
|
|
|
|
reserved,
|
|
|
|
reserved,
|
|
|
|
reserved,
|
|
|
|
reserved,
|
|
|
|
reserved,
|
|
|
|
reserved,
|
|
|
|
reserved,
|
|
|
|
1024 * 1024,
|
|
|
|
1024 * 1024
|
|
|
|
};
|