quakeforge/tools/qwaq/defs.qc
Bill Currie d6b10c99aa Most, if not all, of the fixes needed to get qwaq building.
This is pretty much just changing [] to * and moving [N] to the other side
of the variable name.
2011-02-07 22:16:16 +09:00

22 lines
592 B
C++

void (string str) print = #0;
integer () errno = #0;
string (integer err) strerror = #0;
integer (...) open = #0; // string path, float flags[, float mode]
integer (integer handle) close = #0;
string (integer handle, integer count, integer *result) read = #0;
integer (integer handle, string buffer, integer count) write = #0;
integer (integer handle, integer pos, integer whence) seek = #0;
//void() traceon = #0; // turns statment trace on
//void() traceoff = #0;
void (...) printf = #0;
float time;
entity self;
.float nextthink;
.void() think;
.float frame;
.vector origin;