Go to the source code of this file.
Data Structures | |
| struct | agl_ios |
| defines an io stream More... | |
Defines | |
| #define | agl_ios_seek(ios, offset, whence) |
| seek into the stream | |
| #define | agl_ios_tell(ios) |
| tell the position in the stream | |
| #define | agl_ios_read(ios, buf, size, maxnum, supp) |
| read the stream | |
| #define | agl_ios_write(ios, buf, size, maxnum, supp) |
| write into the stream | |
| #define | agl_ios_close(ios) |
| close the stream | |
Typedefs | |
| typedef agl_ios | agl_ios |
| defines an io stream | |
|
|
Value: (agl_assert(ios != NULL), \
((ios)->pio->close(ios)))
|
|
|
Value: (agl_assert(ios != NULL), \
((ios)->pio->read(ios, buf, size, maxnum ,supp)))
|
|
|
Value: (agl_assert(ios != NULL), \
((ios)->pio->seek(ios, offset, whence)))
|
|
|
Value: (agl_assert(ios != NULL), \
((ios)->pio->seek(ios, 0, SEEK_CUR)))
|
|
|
Value: (agl_assert(ios != NULL), \
((ios)->pio->write(ios, buf, size, maxnum ,supp)))
|
|
|
This structure defines io streams for adgali all the members are private. Don't use them directly |
1.3.2 ,