Files @ r4086:7c5b0e7baecb
Branch filter:

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

miham
(svn r5402) WebTranslator2 update to 2006-06-28 15:08:19
czech - 15 fixed by Hadez (15)
french - 1 fixed, 3 changed by belugas (4)
italian - 1 changed by sidew (1)
ukrainian - 1 fixed by znikoz (1)
/* $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 */