RetroArch/deps/zlib/gzfile.h
2015-03-10 18:18:39 +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