aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorChris Apers2006-02-12 18:30:15 +0000
committerChris Apers2006-02-12 18:30:15 +0000
commit353ea3881f7d651ded9be6b3f034987fcb7adddc (patch)
tree5a546365b329d38df8e5223d30c8559be6c4c1b2 /backends
parentf74801e42cbbe9203fee03852944633d7c8d1c50 (diff)
downloadscummvm-rg350-353ea3881f7d651ded9be6b3f034987fcb7adddc.tar.gz
scummvm-rg350-353ea3881f7d651ded9be6b3f034987fcb7adddc.tar.bz2
scummvm-rg350-353ea3881f7d651ded9be6b3f034987fcb7adddc.zip
New definitions for frontend <-> module communication
svn-id: r20635
Diffstat (limited to 'backends')
-rw-r--r--backends/PalmOS/Src/palmdefs.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/backends/PalmOS/Src/palmdefs.h b/backends/PalmOS/Src/palmdefs.h
index eb62424c1c..d37b533a21 100644
--- a/backends/PalmOS/Src/palmdefs.h
+++ b/backends/PalmOS/Src/palmdefs.h
@@ -2,7 +2,17 @@
#define PALMDEFS_H
#define appFileCreator 'ScVM'
-#define sysAppLaunchCustomDeleteEngine (sysAppLaunchCmdCustomBase + 0)
+#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);