quakeforge/ruamoko/lib/message.r
Bill Currie f94d5e9fdb [ruamoko] Correct decls for functions using PF_VarString
Need to ensure va_list gets into the arguments so PF_VarString can work
with Ruamoko progs.
2022-02-04 22:31:36 +09:00

16 lines
600 B
R

#include <message.h>
void (...) bprint = #23;
void (.../*entity client, string s*/) sprint = #24;
void (float to, float f) WriteByte = #52;
void (float to, float f) WriteChar = #53;
void (float to, float f) WriteShort = #54;
void (float to, float f) WriteLong = #55;
void (float to, float f) WriteCoord = #56;
void (float to, float f) WriteAngle = #57;
void (float to, string s) WriteString = #58;
void (float to, entity s) WriteEntity = #59;
void (float to, ...) WriteBytes = #0;
void (float to, vector v) WriteCoordV = #0;
void (float to, vector v) WriteAngleV = #0;
void (...) centerprint = #73;