summary refs log tree commit diff
path: root/src/Support.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Support.h')
-rw-r--r--src/Support.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/Support.h b/src/Support.h
index cd71fc0..8fbe1d8 100644
--- a/src/Support.h
+++ b/src/Support.h
@@ -8,24 +8,10 @@
 
 typedef char* Str255;
 typedef int OSErr;
-typedef short int SInt16;
-
-typedef bool Boolean;
-#define TRUE true
-#define FALSE false
-
-typedef struct UnsignedWide
-{
-	unsigned int lo;
-	unsigned int hi;
-} UnsignedWide;
 
 #define SetFPos(fildes, whence, offset) lseek(fildes, offset, whence)
 #define FSClose(fildes) close(fildes)
 
 int Random();
 bool IsKeyDown(int key);
-
-FILE *cfh_fopen(const char *filename, const char *mode);
-
 #endif