HomeSort by relevance Sort by last modified time
    Searched defs:sizebuf_t (Results 1 - 2 of 2) sorted by null

  /external/quake/quake/src/WinQuake/
common.h 46 } sizebuf_t; typedef in typeref:struct:sizebuf_s
48 void SZ_Alloc (sizebuf_t *buf, int startsize);
49 void SZ_Free (sizebuf_t *buf);
50 void SZ_Clear (sizebuf_t *buf);
51 void *SZ_GetSpace (sizebuf_t *buf, int length);
52 void SZ_Write (sizebuf_t *buf, const void *data, int length);
53 void SZ_Print (sizebuf_t *buf, const char *data); // strcats onto the sizebuf
104 void MSG_WriteChar (sizebuf_t *sb, int c);
105 void MSG_WriteByte (sizebuf_t *sb, int c);
106 void MSG_WriteShort (sizebuf_t *sb, int c)
    [all...]
  /external/quake/quake/src/QW/client/
common.h 44 } sizebuf_t; typedef in typeref:struct:sizebuf_s
46 void SZ_Clear (sizebuf_t *buf);
47 void *SZ_GetSpace (sizebuf_t *buf, int length);
48 void SZ_Write (sizebuf_t *buf, void *data, int length);
49 void SZ_Print (sizebuf_t *buf, char *data); // strcats onto the sizebuf
104 void MSG_WriteChar (sizebuf_t *sb, int c);
105 void MSG_WriteByte (sizebuf_t *sb, int c);
106 void MSG_WriteShort (sizebuf_t *sb, int c);
107 void MSG_WriteLong (sizebuf_t *sb, int c);
108 void MSG_WriteFloat (sizebuf_t *sb, float f)
    [all...]

Completed in 135 milliseconds