X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=common.h;h=3a73d7caaded518484d3920f36d17bd9cae7f6c2;hb=726b302a4cb2cf82910e03b6a713e58ca0a0205c;hp=990ab6ded12a252b2197bc2838eeb6bb33bbba74;hpb=5ff9dbf2dc269135dd6cf59e93b50da73536f35b;p=xonotic%2Fdarkplaces.git diff --git a/common.h b/common.h index 990ab6de..3a73d7ca 100644 --- a/common.h +++ b/common.h @@ -41,13 +41,10 @@ typedef struct sizebuf_s qboolean allowoverflow; // if false, do a Sys_Error qboolean overflowed; // set to true if the buffer size failed qbyte *data; - mempool_t *mempool; int maxsize; int cursize; } sizebuf_t; -void SZ_Alloc (sizebuf_t *buf, int startsize, const char *name); -void SZ_Free (sizebuf_t *buf); void SZ_Clear (sizebuf_t *buf); void *SZ_GetSpace (sizebuf_t *buf, int length); void SZ_Write (sizebuf_t *buf, const void *data, int length);