aboutsummaryrefslogtreecommitdiff
path: root/common/engine.h
diff options
context:
space:
mode:
authorMax Horn2002-08-31 13:29:10 +0000
committerMax Horn2002-08-31 13:29:10 +0000
commita39711e25670b366ed76534cc926ac70ea6c1edd (patch)
tree3fdba199dc0d93333d68dbb44a7e1bc571f78d93 /common/engine.h
parent0c7771a7062fc982cbaca53fee022d9538a44f70 (diff)
downloadscummvm-rg350-a39711e25670b366ed76534cc926ac70ea6c1edd.tar.gz
scummvm-rg350-a39711e25670b366ed76534cc926ac70ea6c1edd.tar.bz2
scummvm-rg350-a39711e25670b366ed76534cc926ac70ea6c1edd.zip
fixed compilation on Mac OS X; some cleanup; moved header file scumm/smusH/rect.h to common/rect.h
svn-id: r4877
Diffstat (limited to 'common/engine.h')
-rw-r--r--common/engine.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/common/engine.h b/common/engine.h
index 6241d70a7f..8ca47dd17e 100644
--- a/common/engine.h
+++ b/common/engine.h
@@ -56,5 +56,17 @@ public:
static Engine *createFromDetector(GameDetector *detector, OSystem *syst);
};
+#if defined(__GNUC__)
+void CDECL error(const char *s, ...) NORETURN;
+#else
+void CDECL NORETURN error(const char *s, ...);
+#endif
+
+void CDECL warning(const char *s, ...);
+
+void CDECL debug(int level, const char *s, ...);
+void checkHeap();
+
#endif
+