Minor changes to compile WinCE port

svn-id: r3758
This commit is contained in:
Nicolas Bacca 2002-03-14 22:45:22 +00:00
parent 5ebbbd8c8f
commit 2a3fb540ac
3 changed files with 15 additions and 0 deletions

View File

@ -2281,6 +2281,8 @@ struct Serializer {
bool isSaving() { return _saveOrLoad; }
bool Serializer::checkEOFLoadStream();
};
extern const uint32 IMxx_tags[];

View File

@ -285,8 +285,13 @@ void Scumm::scummMain(int argc, char **argv) {
}
int Scumm::scummLoop(int delta) {
#ifndef _WIN32_WCE
if (_debugger)
_debugger->on_frame();
#endif
_vars[VAR_TMR_1] += delta;
_vars[VAR_TMR_2] += delta;

View File

@ -2,6 +2,9 @@
* $Id$
*
* $Log$
* Revision 1.12 2002/03/14 22:45:22 arisme
* Minor changes to compile WinCE port
*
* Revision 1.11 2002/03/09 13:48:53 drigo
* Support for MacOS classic port
*
@ -36,6 +39,8 @@
#pragma once
#endif // _MSC_VER > 1000
#if !defined(_WIN32_WCE)
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define NOGDICAPMASKS
#define OEMRESOURCE
@ -60,6 +65,8 @@
#define NOSOUND
#define NODRAWTEXT
#endif
#include <SDL.h>
#include <windows.h>
#include <stdio.h>
@ -73,6 +80,7 @@
#include <assert.h>
#include <mmsystem.h>
#include <ctype.h>
#include <Winuser.h>
#else