diff options
author | Jean-André Santoni | 2019-01-13 11:34:07 +0700 |
---|---|---|
committer | GitHub | 2019-01-13 11:34:07 +0700 |
commit | c8e850f3584ba1eea367373d76d8b768a58d6d2c (patch) | |
tree | ea7e23977f5403d1c5ed3e18b27d03e53e778810 /deps/zlib/gzfile.h | |
parent | 28ea3e2d87c4e239d8853b10c4496f82feb9d982 (diff) | |
parent | 7795edd6c683a5b82701cfa825304ac48bf79fef (diff) | |
download | pcsx_rearmed-c8e850f3584ba1eea367373d76d8b768a58d6d2c.tar.gz pcsx_rearmed-c8e850f3584ba1eea367373d76d8b768a58d6d2c.tar.bz2 pcsx_rearmed-c8e850f3584ba1eea367373d76d8b768a58d6d2c.zip |
Merge pull request #215 from libretro/kivutar/embedzlib
Embed zlib
Diffstat (limited to 'deps/zlib/gzfile.h')
-rw-r--r-- | deps/zlib/gzfile.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/deps/zlib/gzfile.h b/deps/zlib/gzfile.h new file mode 100644 index 0000000..2df4842 --- /dev/null +++ b/deps/zlib/gzfile.h @@ -0,0 +1,12 @@ + +#ifndef _GZFILE_H +#define _GZFILE_H + +struct gzFile_s +{ + unsigned have; + unsigned char *next; + z_off64_t pos; +}; + +#endif |