aboutsummaryrefslogtreecommitdiff
path: root/sword2/tony_gsdk.h
diff options
context:
space:
mode:
authorTorbjörn Andersson2003-09-17 14:33:47 +0000
committerTorbjörn Andersson2003-09-17 14:33:47 +0000
commit27b734a044a07377bb4e99451bf912091ae5708f (patch)
treebcd2fe72fc8c48391d5b492ee4db4d41560c226d /sword2/tony_gsdk.h
parentccf2eb2cc6c251a0a702e1e84a633c9751e56d05 (diff)
downloadscummvm-rg350-27b734a044a07377bb4e99451bf912091ae5708f.tar.gz
scummvm-rg350-27b734a044a07377bb4e99451bf912091ae5708f.tar.bz2
scummvm-rg350-27b734a044a07377bb4e99451bf912091ae5708f.zip
Rewrote Read_file() to use our File class, and removed the unused functions
Direct_read_file() and Direct_write_file(). This change is completely untested, but that should be ok since Read_file() (which is now the only function left in tony_gsdk.cpp) only seems to be used in debug builds. Perhaps we should remove these files completely? svn-id: r10272
Diffstat (limited to 'sword2/tony_gsdk.h')
-rw-r--r--sword2/tony_gsdk.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/sword2/tony_gsdk.h b/sword2/tony_gsdk.h
index b6079b4804..ea580cc781 100644
--- a/sword2/tony_gsdk.h
+++ b/sword2/tony_gsdk.h
@@ -20,14 +20,8 @@
#ifndef TONY_GSDK
#define TONY_GSDK
-//#include "src\driver96.h"
#include "memory.h"
-
-
-uint32 Read_file(const char *name, mem **membloc, uint32 uid);
-int32 Direct_read_file(const char *name, char *ad);
-int32 Direct_write_file(const char *name, char *ad, uint32 total_bytes);
-
+uint32 Read_file(const char *name, mem **membloc, uint32 uid);
#endif