aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-11-08 22:43:46 +0000
committerPaweł Kołodziejski2003-11-08 22:43:46 +0000
commitb5a7ef0822d336958682b3f9b8b1c4fc0d28af3c (patch)
tree664e98a759f8c7e821c9a33b8c17f27eb295d4a3 /common/system.h
parentbd972c97e57234dadd830fef118139c0bf9c71e4 (diff)
downloadscummvm-rg350-b5a7ef0822d336958682b3f9b8b1c4fc0d28af3c.tar.gz
scummvm-rg350-b5a7ef0822d336958682b3f9b8b1c4fc0d28af3c.tar.bz2
scummvm-rg350-b5a7ef0822d336958682b3f9b8b1c4fc0d28af3c.zip
cleanup whitespaces
svn-id: r11219
Diffstat (limited to 'common/system.h')
-rw-r--r--common/system.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/common/system.h b/common/system.h
index bac63a8950..791c392759 100644
--- a/common/system.h
+++ b/common/system.h
@@ -202,31 +202,29 @@ public:
/** Show or hide the mouse cursor. */
virtual bool show_mouse(bool visible) = 0;
-
+
/**
* Move ("warp) the mouse cursor to the specified position.
*/
virtual void warp_mouse(int x, int y) = 0;
-
+
/** Set the bitmap used for drawing the cursor. */
virtual void set_mouse_cursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y) = 0;
//@}
-
-
/** @name Events and Time */
//@{
/** Get the number of milliseconds since the program was started. */
virtual uint32 get_msecs() = 0;
-
+
/** Delay/sleep for the specified amount of milliseconds. */
virtual void delay_msecs(uint msecs) = 0;
-
+
/** Set the timer callback. */
virtual void set_timer(TimerProc callback, int interval) = 0;
-
+
/**
* Get the next event in the event queue.
* @param event point to an Event struct, which will be filled with the event data.
@@ -248,7 +246,7 @@ public:
* @param format the sample type format.
*/
virtual bool set_sound_proc(SoundProc proc, void *param, SoundFormat format) = 0;
-
+
/**
* Remove any audio callback previously set via set_sound_proc, thus effectively
* stopping all audio output immediately.