mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
prototype the new Write functions
This commit is contained in:
parent
b64f193d56
commit
8db10ff577
1 changed files with 3 additions and 0 deletions
|
@ -35,12 +35,15 @@
|
||||||
#define MULTICAST_PVS_R 5
|
#define MULTICAST_PVS_R 5
|
||||||
|
|
||||||
@extern void (...) bprint;
|
@extern void (...) bprint;
|
||||||
|
@extern void (float to, ...) WriteBytes;
|
||||||
@extern void (float to, float f) WriteByte;
|
@extern void (float to, float f) WriteByte;
|
||||||
@extern void (float to, float f) WriteChar;
|
@extern void (float to, float f) WriteChar;
|
||||||
@extern void (float to, float f) WriteShort;
|
@extern void (float to, float f) WriteShort;
|
||||||
@extern void (float to, float f) WriteLong;
|
@extern void (float to, float f) WriteLong;
|
||||||
@extern void (float to, float f) WriteCoord;
|
@extern void (float to, float f) WriteCoord;
|
||||||
@extern void (float to, float f) WriteAngle;
|
@extern void (float to, float f) WriteAngle;
|
||||||
|
@extern void (float to, vector v) WriteCoordV;
|
||||||
|
@extern void (float to, vector v) WriteAngleV;
|
||||||
@extern void (float to, string s) WriteString;
|
@extern void (float to, string s) WriteString;
|
||||||
@extern void (float to, entity s) WriteEntity;
|
@extern void (float to, entity s) WriteEntity;
|
||||||
@extern void (...) centerprint;
|
@extern void (...) centerprint;
|
||||||
|
|
Loading…
Reference in a new issue