aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/sdl.h
diff options
context:
space:
mode:
authorLittleboy2011-04-26 12:47:03 -0400
committerJulien2011-06-16 10:26:51 -0400
commit71e457783eb830982aa5f89a3f72ea741f32ffef (patch)
tree07637ff4537e330775d1ea238715b25eefff5042 /backends/platform/sdl/sdl.h
parentd8d16e0231272e73f72630c5a1966db6f1e29809 (diff)
downloadscummvm-rg350-71e457783eb830982aa5f89a3f72ea741f32ffef.tar.gz
scummvm-rg350-71e457783eb830982aa5f89a3f72ea741f32ffef.tar.bz2
scummvm-rg350-71e457783eb830982aa5f89a3f72ea741f32ffef.zip
BACKENDS: Add generic TaskbarManager class to handle taskbar integration
Diffstat (limited to 'backends/platform/sdl/sdl.h')
-rw-r--r--backends/platform/sdl/sdl.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/backends/platform/sdl/sdl.h b/backends/platform/sdl/sdl.h
index 9c08752054..19f913ef45 100644
--- a/backends/platform/sdl/sdl.h
+++ b/backends/platform/sdl/sdl.h
@@ -30,7 +30,7 @@
#include "backends/events/sdl/sdl-events.h"
#include "backends/log/log.h"
-/**
+/**
* Base OSystem class for all SDL ports.
*/
class OSystem_SDL : public ModularBackend {
@@ -38,7 +38,7 @@ public:
OSystem_SDL();
virtual ~OSystem_SDL();
- /**
+ /**
* Pre-initialize backend. It should be called after
* instantiating the backend. Early needed managers are
* created here.
@@ -54,6 +54,8 @@ public:
// Override functions from ModularBackend and OSystem
virtual void initBackend();
+ virtual void engineInit();
+ virtual void engineDone();
virtual Common::HardwareKeySet *getHardwareKeySet();
virtual void quit();
virtual void fatalError();