aboutsummaryrefslogtreecommitdiff
path: root/scumm.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm.h')
-rw-r--r--scumm.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/scumm.h b/scumm.h
index 421ff60225..c35b5a19cc 100644
--- a/scumm.h
+++ b/scumm.h
@@ -22,6 +22,7 @@
#include "scummsys.h"
#include "system.h"
#include "sound/mixer.h"
+#include "config-file.h"
#define SCUMMVM_VERSION "0.2.0 devel"
#define SCUMMVM_CVS "042002"
@@ -1337,7 +1338,9 @@ public:
uint fileReadWordBE();
static byte *alloc(int size);
+ static byte *realloc(void *mem, int size);
static void free(void *mem);
+ static char *Strdup(const char *);
/* Version 5 script opcodes */
void o5_actorFollowCamera();
@@ -1848,6 +1851,8 @@ void outputdisplay2(Scumm *s, int disp);
extern const byte revBitMask[8];
//void blitToScreen(Scumm *s, byte *src, int x, int y, int w, int h);
+extern Config * scummcfg;
+
#if defined(__GNUC__)
void CDECL error(const char *s, ...) NORETURN;
#else