mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-27 21:27:12 +00:00
13 lines
127 B
C
13 lines
127 B
C
|
|
||
|
#ifndef _GZFILE_H
|
||
|
#define _GZFILE_H
|
||
|
|
||
|
struct gzFile_s
|
||
|
{
|
||
|
unsigned have;
|
||
|
unsigned char *next;
|
||
|
z_off64_t pos;
|
||
|
};
|
||
|
|
||
|
#endif
|