aboutsummaryrefslogtreecommitdiff
path: root/tools/create_kyradat/util.h
diff options
context:
space:
mode:
authorJohannes Schickel2009-09-17 02:26:46 +0000
committerJohannes Schickel2009-09-17 02:26:46 +0000
commitf440a2bcd922e91c5bd1fb2eee6933c5a33390f3 (patch)
treea4ee313cd3a7d27fdeea37a952e986dd943f9e96 /tools/create_kyradat/util.h
parent4245f2e842211099fc67a708037e46f2303fd415 (diff)
downloadscummvm-rg350-f440a2bcd922e91c5bd1fb2eee6933c5a33390f3.tar.gz
scummvm-rg350-f440a2bcd922e91c5bd1fb2eee6933c5a33390f3.tar.bz2
scummvm-rg350-f440a2bcd922e91c5bd1fb2eee6933c5a33390f3.zip
- Augment all executable entries with platform
- Augment all search data tables with platform and language, where required svn-id: r44135
Diffstat (limited to 'tools/create_kyradat/util.h')
-rw-r--r--tools/create_kyradat/util.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/create_kyradat/util.h b/tools/create_kyradat/util.h
index 3938f2ab56..0b5e729a05 100644
--- a/tools/create_kyradat/util.h
+++ b/tools/create_kyradat/util.h
@@ -232,6 +232,30 @@ void NORETURN_PRE error(const char *s, ...) NORETURN_POST;
void warning(const char *s, ...);
void debug(int level, const char *s, ...);
+enum Platform {
+ kPlatformPC,
+ kPlatformAmiga,
+ kPlatformAtariST,
+ kPlatformMacintosh,
+ kPlatformFMTowns,
+ kPlatformWindows,
+ kPlatformNES,
+ kPlatformC64,
+ kPlatformCoCo3,
+ kPlatformLinux,
+ kPlatformAcorn,
+ kPlatformSegaCD,
+ kPlatform3DO,
+ kPlatformPCEngine,
+
+ kPlatformApple2GS,
+ kPlatformPC98,
+ kPlatformWii,
+ kPlatformPSX,
+
+ kPlatformUnknown = -1
+};
+
enum {
EN_ANY, // Generic English (when only one game version exist)
EN_USA,