aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/builtin.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/builtin.h')
-rw-r--r--engines/sludge/builtin.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sludge/builtin.h b/engines/sludge/builtin.h
index 8f5ac5972e..00d780e18b 100644
--- a/engines/sludge/builtin.h
+++ b/engines/sludge/builtin.h
@@ -23,9 +23,13 @@
#ifndef SLUDGE_BUILTIN_H
#define SLUDGE_BUILTIN_H
+namespace Sludge {
+
enum builtReturn {BR_KEEP_AND_PAUSE, BR_ERROR, BR_CONTINUE, BR_PAUSE, BR_CALLAFUNC, BR_ALREADY_GONE};
bool failSecurityCheck(char *fn);
builtReturn callBuiltIn(int whichFunc, int numParams, loadedFunction *fun);
+} // End of namespace Sludge
+
#endif