aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/sludger.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/sludger.h')
-rw-r--r--engines/sludge/sludger.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/engines/sludge/sludger.h b/engines/sludge/sludger.h
index fb9734a995..ff24b24155 100644
--- a/engines/sludge/sludger.h
+++ b/engines/sludge/sludger.h
@@ -24,10 +24,13 @@
#include <stdint.h>
+#include "allfiles.h"
#include "variable.h"
#include "csludge.h"
#include "language.h"
+namespace Sludge {
+
#ifndef _WIN32
typedef struct _FILETIME {
uint32_t dwLowDateTime;
@@ -35,6 +38,8 @@ typedef struct _FILETIME {
} FILETIME;
#endif
+struct variable;
+struct variableStack;
struct eventHandlers {
int leftMouseFunction;
@@ -47,8 +52,8 @@ struct eventHandlers {
};
struct lineOfCode {
- sludgeCommand theCommand;
- int32_t param;
+ sludgeCommand theCommand;
+ int32_t param;
};
struct loadedFunction {
@@ -95,4 +100,6 @@ void completeTimers();
void killSpeechTimers();
int cancelAFunction(int funcNum, loadedFunction *myself, bool &killedMyself);
+} // End of namespace Sludge
+
#endif