mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
27 lines
662 B
C
27 lines
662 B
C
/* $Id$ */
|
|
|
|
/** @file fileio.h Declarations for Standard In/Out file operations */
|
|
|
|
#ifndef FILEIO_H
|
|
#define FILEIO_H
|
|
|
|
void FioSeekTo(uint32 pos, int mode);
|
|
void FioSeekToFile(uint32 pos);
|
|
uint32 FioGetPos();
|
|
byte FioReadByte();
|
|
uint16 FioReadWord();
|
|
uint32 FioReadDword();
|
|
void FioCloseAll();
|
|
void FioOpenFile(int slot, const char *filename);
|
|
void FioReadBlock(void *ptr, uint size);
|
|
void FioSkipBytes(int n);
|
|
|
|
FILE *FioFOpenFile(const char *filename);
|
|
bool FioCheckFileExists(const char *filename);
|
|
void FioCreateDirectory(const char *filename);
|
|
|
|
void AppendPathSeparator(char *buf, size_t buflen);
|
|
void DeterminePaths(const char *exe);
|
|
|
|
#endif /* FILEIO_H */
|