Files @ r4706:c8f61c3bf1a4
Branch filter:

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

miham
(svn r6616) WebTranslator2 update to 2006-10-02 18:26:27
catalan - 9 changed by arnaullv (9)
danish - 54 fixed by ThomasA (54)
dutch - 3 fixed by habell (3)
finnish - 26 fixed by lauri.kajan (26)
ukrainian - 40 fixed by znikoz (40)
/* $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 FioCheckFileExists(const char *filename);

#endif /* FILEIO_H */