aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/tools.h')
-rw-r--r--engines/sci/tools.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/engines/sci/tools.h b/engines/sci/tools.h
index 4bc0330bd2..dc5a1a33c5 100644
--- a/engines/sci/tools.h
+++ b/engines/sci/tools.h
@@ -31,40 +31,14 @@
namespace Sci {
-
-struct GTimeVal {
- long tv_sec;
- long tv_usec;
-};
-
-
-
/**** FUNCTION DECLARATIONS ****/
#define getInt16 (int16)READ_LE_UINT16
#define getUInt16 READ_LE_UINT16
#define putInt16 WRITE_LE_UINT16
-
/* --- */
-void sci_gettime(long *seconds, long *useconds);
-/* Calculates the current time in seconds and microseconds
-** Parameters: (long *) seconds: Pointer to the variable the seconds part of the
-** current time will be stored in
-** (long *) useconds: Pointer to the variable the microseconds part
-** of the current time will be stored in
-** Returns : (void)
-** The resulting values must be relative to an arbitrary fixed point in time
-** (typically 01/01/1970 on *NIX systems).
-*/
-
-void sci_get_current_time(GTimeVal *val);
-/* GTimeVal version of sci_gettime()
-** Parameters: (GTimeVal *) val: Pointer to the structure the values will be stored in
-** Returns : (void)
-*/
-
int sciprintf(const char *fmt, ...) GCC_PRINTF(1, 2);
#define gfxprintf sciprintf
/* Prints a string to the console stack