aboutsummaryrefslogtreecommitdiff
path: root/gob/timer.h
diff options
context:
space:
mode:
authorEugene Sandulenko2005-04-05 15:07:40 +0000
committerEugene Sandulenko2005-04-05 15:07:40 +0000
commit1758c5b211a39c29a193546348e7cc6e7bc2e8c9 (patch)
tree225d803c62c79d6a6d95ada0096e8832e9e65044 /gob/timer.h
parentb399a052f1a60df4731aa15d330e1c0b759ed857 (diff)
downloadscummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.tar.gz
scummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.tar.bz2
scummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.zip
Initial checking of Gob engine
svn-id: r17388
Diffstat (limited to 'gob/timer.h')
-rw-r--r--gob/timer.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/gob/timer.h b/gob/timer.h
new file mode 100644
index 0000000000..26f3b7df56
--- /dev/null
+++ b/gob/timer.h
@@ -0,0 +1,25 @@
+/*
+** Gobliiins 1
+** Original game by CoktelVision
+**
+** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
+**
+*/
+#ifndef __TIMER_H_
+#define __TIMER_H_
+
+namespace Gob {
+
+typedef void (* TickHandler) (void);
+
+void timer_enableTimer(void);
+void timer_disableTimer(void);
+void timer_setHandler(void);
+void timer_restoreHandler(void);
+void timer_addTicks(int16 ticks);
+void timer_setTickHandler(TickHandler handler);
+int32 timer_getTicks(void);
+
+} // End of namespace Gob
+
+#endif