1
0
mirror of https://github.com/libretro/RetroArch synced 2025-01-30 03:32:46 +00:00
2017-03-25 10:06:13 +01:00

13 lines
127 B
C

#ifndef _GZFILE_H
#define _GZFILE_H
struct gzFile_s
{
unsigned have;
unsigned char *next;
z_off64_t pos;
};
#endif