mirror of
https://github.com/libretro/RetroArch
synced 2025-02-28 12:40:23 +00:00
Add gzfile.h
This commit is contained in:
parent
45490526d9
commit
6c8f86b3a4
12
deps/zlib/gzfile.h
vendored
Normal file
12
deps/zlib/gzfile.h
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
|
||||
#ifndef _GZFILE_H
|
||||
#define _GZFILE_H
|
||||
|
||||
struct gzFile_s
|
||||
{
|
||||
unsigned have;
|
||||
unsigned char *next;
|
||||
z_off64_t pos;
|
||||
};
|
||||
|
||||
#endif
|
2
deps/zlib/gzguts.h
vendored
2
deps/zlib/gzguts.h
vendored
@ -166,7 +166,7 @@
|
||||
#define MODE_COPY 1 /* copy input directly */
|
||||
#define MODE_GZIP 2 /* decompress a gzip stream */
|
||||
|
||||
struct gzFile_s;
|
||||
#include "gzfile.h"
|
||||
|
||||
/* internal gzip file state data structure */
|
||||
typedef struct {
|
||||
|
Loading…
x
Reference in New Issue
Block a user