mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-11 12:05:55 +00:00
30 lines
476 B
R
30 lines
476 B
R
|
#include "Processes.r"
|
||
|
#include "Retro68.r"
|
||
|
|
||
|
resource 'CODE' (0) RETRO68_JUMP_TABLE;
|
||
|
|
||
|
resource 'CODE' (1) {
|
||
|
dontBreakAtEntry, $$read(FLT_FILE_NAME);
|
||
|
};
|
||
|
|
||
|
resource 'SIZE' (-1) {
|
||
|
dontSaveScreen,
|
||
|
acceptSuspendResumeEvents,
|
||
|
enableOptionSwitch,
|
||
|
canBackground,
|
||
|
multiFinderAware,
|
||
|
backgroundAndForeground,
|
||
|
dontGetFrontClicks,
|
||
|
ignoreChildDiedEvents,
|
||
|
is32BitCompatible,
|
||
|
reserved,
|
||
|
reserved,
|
||
|
reserved,
|
||
|
reserved,
|
||
|
reserved,
|
||
|
reserved,
|
||
|
reserved,
|
||
|
1024 * 1024,
|
||
|
1024 * 1024
|
||
|
};
|