Files @ r3805:fad05e642f4f
Branch filter:

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

miham
(svn r4813) WebTranslator2 update to 2006-05-10 12:51:40
dutch - 3 fixed by webfreakz (3)
hungarian - 2 fixed by miham (2)
lithuanian - 50 fixed, 3 changed by Plyta (53)
polish - 2 fixed by meush (2)
portuguese - 2 fixed by izhirahider (2)
/* $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 */