RetroArch/deps/zlib/gzfile.h

13 lines
127 B
C
Raw Normal View History

2015-03-10 17:18:39 +00:00
#ifndef _GZFILE_H
#define _GZFILE_H
struct gzFile_s
{
unsigned have;
unsigned char *next;
z_off64_t pos;
};
#endif