Files @ r3998:071ee4637db1
Branch filter:

Location: cpp/openttd-patchpack/source/fileio.h

miham
(svn r5202) WebTranslator2 update to 2006-06-09 19:46:28
american - 4 fixed by WhiteRabbit (4)
dutch - 4 fixed by webfreakz (4)
turkish - 4 fixed, 4 changed by jnmbk (8)
ukrainian - 4 fixed by znikoz (4)
/* $Id$ */

#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);
FILE *FioFOpenFile(const char *filename);
void FioOpenFile(int slot, const char *filename);
void FioReadBlock(void *ptr, uint size);
void FioSkipBytes(int n);
bool FiosCheckFileExists(const char *filename);

#endif /* FILEIO_H */