#include <stdio.h>
Go to the source code of this file.
|
#define | DF_BUFFIO |
|
#define | DF_DYNAMIC |
|
#define | DF_OPEN(x, y) fopen(x,y) |
|
#define | DF_CLOSE(x) fclose(x) |
|
#define | DF_SEEK(x, y, z) fseek(x,y,z) |
|
#define | DF_SKEND(x, y, z) fseek(x,y,z) |
|
#define | DF_TELL(x) ftell(x) |
|
#define | DF_READ(a, b, c, d) fread(a,b,c,d) |
|
#define | DF_WRITE(a, b, c, d) fwrite(a,b,c,d) |
|
#define | DF_FLUSH(a) fflush(a) |
|
#define | DF_OPENERR(f) (!(f)) |
|
#define | DF_RDACCESS "rb" |
|
#define | DF_WRACCESS "rb+" |
|
◆ DF_BUFFIO
Definition at line 36 of file dfi.h.
◆ DF_CLOSE
#define DF_CLOSE |
( |
|
x | ) |
fclose(x) |
◆ DF_DYNAMIC
Definition at line 39 of file dfi.h.
◆ DF_FLUSH
#define DF_FLUSH |
( |
|
a | ) |
fflush(a) |
◆ DF_OPEN
#define DF_OPEN |
( |
|
x, |
|
|
|
y |
|
) |
| fopen(x,y) |
◆ DF_OPENERR
#define DF_OPENERR |
( |
|
f | ) |
(!(f)) |
◆ DF_RDACCESS
◆ DF_READ
#define DF_READ |
( |
|
a, |
|
|
|
b, |
|
|
|
c, |
|
|
|
d |
|
) |
| fread(a,b,c,d) |
◆ DF_SEEK
#define DF_SEEK |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| fseek(x,y,z) |
◆ DF_SKEND
#define DF_SKEND |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| fseek(x,y,z) |
◆ DF_TELL
#define DF_TELL |
( |
|
x | ) |
ftell(x) |
◆ DF_WRACCESS
#define DF_WRACCESS "rb+" |
◆ DF_WRITE
#define DF_WRITE |
( |
|
a, |
|
|
|
b, |
|
|
|
c, |
|
|
|
d |
|
) |
| fwrite(a,b,c,d) |