aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/wince-sdl.h
diff options
context:
space:
mode:
authorMax Horn2004-03-28 20:31:18 +0000
committerMax Horn2004-03-28 20:31:18 +0000
commit39765b0d19fd8409cf4e0e96c9edc2ad5b25f247 (patch)
tree3f1aef98ad8882a2d1147cc4c7a4a838b60f22ac /backends/wince/wince-sdl.h
parent09e3fec623c1ecea73a23d12891790569d1baa40 (diff)
downloadscummvm-rg350-39765b0d19fd8409cf4e0e96c9edc2ad5b25f247.tar.gz
scummvm-rg350-39765b0d19fd8409cf4e0e96c9edc2ad5b25f247.tar.bz2
scummvm-rg350-39765b0d19fd8409cf4e0e96c9edc2ad5b25f247.zip
Remove explicit OSystem parameter from StackLock constructor; added OSystem::displayMessageOnOSD (not yet used; default implementation provided)
svn-id: r13413
Diffstat (limited to 'backends/wince/wince-sdl.h')
-rw-r--r--backends/wince/wince-sdl.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/backends/wince/wince-sdl.h b/backends/wince/wince-sdl.h
index 910cd558d0..a54e0c16fa 100644
--- a/backends/wince/wince-sdl.h
+++ b/backends/wince/wince-sdl.h
@@ -36,15 +36,16 @@
#include <SDL.h>
-class OSystem_WINCE3 : public OSystem_SDL_Common {
+class OSystem_WINCE3 : public OSystem_SDL {
public:
OSystem_WINCE3();
// Update the dirty areas of the screen
- void updateScreen();
+ void internUpdateScreen();
- // Set a parameter
- uint32 property(int param, Property *value);
+ bool hasFeature(Feature f);
+ void setFeatureState(Feature f, bool enable);
+ bool getFeatureState(Feature f);
void initSize(uint w, uint h);