]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - dpvsimpledecode.c
gave names to nearly all structs and enums which should make for better C++ error...
[xonotic/darkplaces.git] / dpvsimpledecode.c
index a8d537efaab677e325f94e7d9f6f5e93d2311042..6544ac7a4ae55a83f09e58e8abd84fee87ae59c6 100644 (file)
@@ -9,7 +9,7 @@
 //#define HZREADBLOCKSIZE 16000
 #define HZREADBLOCKSIZE 1048576
 
-typedef struct
+typedef struct hz_bitstream_read_s
 {
        qfile_t *file;
        int endoffile;
@@ -24,7 +24,7 @@ typedef struct hz_bitstream_readblock_s
 }
 hz_bitstream_readblock_t;
 
-typedef struct
+typedef struct hz_bitstream_readblocks_s
 {
        hz_bitstream_readblock_t *blocks;
        hz_bitstream_readblock_t *current;