diff options
Diffstat (limited to 'inc/demo.h')
| -rw-r--r-- | inc/demo.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -34,7 +34,7 @@ typedef struct typedef struct { unsigned char sha256[32]; - unsigned char *data; + char *data; } demomap; typedef struct @@ -110,4 +110,8 @@ int readdemomap(FILE *demofile, demomap *map, int mapsize, unsigned char version /* Will allocate memory if chunk is snap, delta or message */ int readdemochunk(FILE *demofile, demochunk *chunk, unsigned char version); +int writedemoheader(FILE *outfile, demoheader *header); +int writedemotimeline(FILE *outfile, demotimeline *timeline); +int writedemomap(FILE *outfile, demomap *map, int mapsize, unsigned char version); + #endif // DEMO_H |
