aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/PalmOS/Src/palmdefs.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/PalmOS/Src/palmdefs.h')
-rw-r--r--backends/platform/PalmOS/Src/palmdefs.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/backends/platform/PalmOS/Src/palmdefs.h b/backends/platform/PalmOS/Src/palmdefs.h
new file mode 100644
index 0000000000..d37b533a21
--- /dev/null
+++ b/backends/platform/PalmOS/Src/palmdefs.h
@@ -0,0 +1,21 @@
+#ifndef PALMDEFS_H
+#define PALMDEFS_H
+
+#define appFileCreator 'ScVM'
+#define sysAppLaunchCustomEngineDelete (sysAppLaunchCmdCustomBase + 0)
+#define sysAppLaunchCustomEngineGetInfo (sysAppLaunchCmdCustomBase + 1)
+
+enum {
+ GET_NONE = 0,
+ GET_DATACOMMON = 1 << 1,
+ GET_DATAENGINE = 1 << 2,
+
+ GET_MODE68K = 1 << 14,
+ GET_MODEARM = 1 << 15,
+};
+
+SysAppInfoPtr SysGetAppInfo(SysAppInfoPtr *uiAppPP, SysAppInfoPtr *actionCodeAppPP)
+ SYS_TRAP(sysTrapSysGetAppInfo);
+
+
+#endif