aboutsummaryrefslogtreecommitdiff
path: root/deps/zlib/gzfile.h
diff options
context:
space:
mode:
authorJean-André Santoni2019-01-13 11:12:32 +0700
committerJean-André Santoni2019-01-13 11:12:32 +0700
commit7795edd6c683a5b82701cfa825304ac48bf79fef (patch)
treeea7e23977f5403d1c5ed3e18b27d03e53e778810 /deps/zlib/gzfile.h
parent28ea3e2d87c4e239d8853b10c4496f82feb9d982 (diff)
downloadpcsx_rearmed-7795edd6c683a5b82701cfa825304ac48bf79fef.tar.gz
pcsx_rearmed-7795edd6c683a5b82701cfa825304ac48bf79fef.tar.bz2
pcsx_rearmed-7795edd6c683a5b82701cfa825304ac48bf79fef.zip
Embed zlib
Diffstat (limited to 'deps/zlib/gzfile.h')
-rw-r--r--deps/zlib/gzfile.h12
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