fileio.h
changeset 0 29654efe3188
child 1093 e8d26c7dc42f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/fileio.h	Mon Aug 09 17:04:08 2004 +0000
@@ -0,0 +1,15 @@
+#ifndef FILEIO_H
+#define FILEIO_H
+
+void FioSeekTo(uint32 pos, int mode);
+void FioSeekToFile(uint32 pos);
+uint32 FioGetPos();
+byte FioReadByte();
+uint16 FioReadWord();
+uint32 FioReadDword();
+void FioCloseAll();
+void FioOpenFile(int slot, const char *filename);
+void FioReadBlock(void *ptr, uint size);
+void FioSkipBytes(int n);
+
+#endif /* FILEIO_H */