Files @ r3791:c8d0694be927
Branch filter:

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

miham
(svn r4787) WebTranslator2 update to 2006-05-09 08:55:14
czech - 6 fixed by Hadez (6)
german - 3 fixed by Neonox (3)
hungarian - 3 fixed by miham (3)
lithuanian - 3 fixed, 4 changed by Plyta (7)
polish - 3 fixed, 3 changed by meush (6)
portuguese - 3 fixed by izhirahider (3)
slovenian - 34 fixed by Sonicelo (34)
turkish - 2 fixed by jnmbk (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 */