author | truelight |
Thu, 08 Mar 2007 12:40:45 +0000 | |
changeset 6254 | 94bc6c0de9fc |
parent 6247 | 7d81e3a5d803 |
child 6298 | 01c80746f308 |
permissions | -rw-r--r-- |
2186 | 1 |
/* $Id$ */ |
2 |
||
6201
bee01dc45e39
(svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents:
6179
diff
changeset
|
3 |
/** @file fileio.h Declarations for Standard In/Out file operations */ |
6179
d19b0137d8e4
(svn r8950) -Cleanup: doxygen changes. Mostly @files missing tags and a few comments style.
belugas
parents:
5475
diff
changeset
|
4 |
|
0 | 5 |
#ifndef FILEIO_H |
6 |
#define FILEIO_H |
|
7 |
||
8 |
void FioSeekTo(uint32 pos, int mode); |
|
9 |
void FioSeekToFile(uint32 pos); |
|
6247 | 10 |
uint32 FioGetPos(); |
11 |
byte FioReadByte(); |
|
12 |
uint16 FioReadWord(); |
|
13 |
uint32 FioReadDword(); |
|
14 |
void FioCloseAll(); |
|
2736
3d6487cbbb69
(svn r3281) -Feature: [OSX] added native cocoa sound and video drivers (egladil)
bjarni
parents:
2186
diff
changeset
|
15 |
FILE *FioFOpenFile(const char *filename); |
0 | 16 |
void FioOpenFile(int slot, const char *filename); |
17 |
void FioReadBlock(void *ptr, uint size); |
|
18 |
void FioSkipBytes(int n); |
|
4201
5c1b9b3043b1
(svn r5685) - Codechange: s/FiosCheckFileExists/FioCheckFileExists/ to unify the naming of these functions.
Darkvater
parents:
2736
diff
changeset
|
19 |
bool FioCheckFileExists(const char *filename); |
0 | 20 |
|
21 |
#endif /* FILEIO_H */ |