Files @ r5301:163d43c96b7d
Branch filter:

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

miham
(svn r7457) WebTranslator2 update to 2006-12-09 19:35:23
esperanto - 191 fixed, 2 changed by LaPingvino (193)
french - 1 fixed by glx (1)
german - 27 fixed by Neonox (27)
italian - 1 fixed by sidew (1)
polish - 8 fixed by meush (8)
turkish - 8 fixed by jnmbk (8)
/* $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 */