fileio.h
author bjarni
Mon, 24 Jan 2005 08:49:14 +0000
changeset 1134 cdaa9f6a7d73
parent 1093 e8d26c7dc42f
child 1198 010e5986ed74
permissions -rw-r--r--
(svn r1635) fix: forgot to set SetVScrollCount properly in autoreplace train GUI. It appears ok now
#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 */