aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/plugin.h
diff options
context:
space:
mode:
authorMax Horn2006-04-08 08:43:28 +0000
committerMax Horn2006-04-08 08:43:28 +0000
commit30c2e1345690cf537937bd3ba71d7d1874efe5cf (patch)
tree0076a14f3f37758277cce7589f7daa925064fc9f /engines/scumm/plugin.h
parent9c77c2ecd1beb3026df8249c5aed271616bc6449 (diff)
downloadscummvm-rg350-30c2e1345690cf537937bd3ba71d7d1874efe5cf.tar.gz
scummvm-rg350-30c2e1345690cf537937bd3ba71d7d1874efe5cf.tar.bz2
scummvm-rg350-30c2e1345690cf537937bd3ba71d7d1874efe5cf.zip
Move some more bits into namespace Scumm
svn-id: r21685
Diffstat (limited to 'engines/scumm/plugin.h')
-rw-r--r--engines/scumm/plugin.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/engines/scumm/plugin.h b/engines/scumm/plugin.h
index 59c30f5824..8dad3e3288 100644
--- a/engines/scumm/plugin.h
+++ b/engines/scumm/plugin.h
@@ -26,6 +26,8 @@
#include "common/util.h"
+namespace Scumm {
+
/**
* Descriptor of a specific SCUMM game. Used internally to store
* information about the tons of game variants that exist.
@@ -40,7 +42,6 @@ struct GameSettings {
};
-
enum GenMethods {
kGenMac,
kGenMacNoParens,
@@ -55,8 +56,10 @@ struct SubstResFileNames {
};
-extern bool applySubstResFileName(const SubstResFileNames &subst, const char *filename, char *buf, int bufsize);
-extern int findSubstResFileName(SubstResFileNames &subst, const char *filename, int index);
+bool applySubstResFileName(const SubstResFileNames &subst, const char *filename, char *buf, int bufsize);
+int findSubstResFileName(SubstResFileNames &subst, const char *filename, int index);
+
+} // End of namespace Scumm
#endif