fileio.h
author tron
Thu, 27 Jan 2005 21:18:03 +0000
changeset 1197 433b4a05fa3e
parent 1093 4fdc46eaf423
child 1198 2ad7ac9e1d59
permissions -rw-r--r--
(svn r1701) Style police ^^
#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 */