fileio.h
author dominik
Mon, 24 Jan 2005 23:28:47 +0000
changeset 1155 7e6f41c301ff
parent 1093 e8d26c7dc42f
child 1198 010e5986ed74
permissions -rw-r--r--
(svn r1656) Sorry, this is of course the 2004 version of Linkgame Islands
#ifndef FILEIO_H
#define FILEIO_H

void FioSeekTo(uint32 pos, int mode);
void FioSeekToFile(uint32 pos);
uint32 FioGetPos(void);
byte FioReadByte(void);
uint16 FioReadWord(void);
uint32 FioReadDword(void);
void FioCloseAll(void);
void FioOpenFile(int slot, const char *filename);
void FioReadBlock(void *ptr, uint size);
void FioSkipBytes(int n);

#endif /* FILEIO_H */