fileio.h
author truelight
Mon, 24 Jan 2005 20:25:52 +0000
changeset 1142 7041f8588a13
parent 1093 e8d26c7dc42f
child 1198 010e5986ed74
permissions -rw-r--r--
(svn r1643) -Fix: [ 1108547 ] You can now change the server-password via the GUI again
#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 */