mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
12 lines
127 B
C
12 lines
127 B
C
|
|
#ifndef _GZFILE_H
|
|
#define _GZFILE_H
|
|
|
|
struct gzFile_s
|
|
{
|
|
unsigned have;
|
|
unsigned char *next;
|
|
z_off64_t pos;
|
|
};
|
|
|
|
#endif
|