Read

Read interface.

Members

Variables

read
int function(void* stream, ubyte* buf, int n) @(nogc) nothrow read;

returns number of bytes read; tries to read n bytes

seek
int function(void* stream, int off) @(nogc) nothrow seek;

returns 0 on success, -1 on error; sets cursor to off(set) from current position

stream
void* stream;
Undocumented in source.

Meta