1 2 #ifndef _GZFILE_H 3 #define _GZFILE_H 4 5 struct gzFile_s 6 { 7 unsigned have; 8 unsigned char *next; 9 z_off64_t pos; 10 }; 11 12 #endif 13