summaryrefslogtreecommitdiff
path: root/lang/ofc/files/patch-ofc_DGZipFile.h
blob: 6423325cb2e98ad00d5b43761bdfea791ae356d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- ofc/DGZipFile.h.orig	2008-08-02 15:15:11.000000000 +0000
+++ ofc/DGZipFile.h
@@ -46,6 +46,7 @@
 #endif
 
 #ifdef HAVE_DGZIPFILE
+#include <zlib.h>
 
 // the seek origins
 #define DGZ_SEEK_SET  (0)    // Seek from the start of the file
@@ -114,7 +115,7 @@
 @interface DGZipFile : Object <DTextReadable,DTextWritable,DDataReadable,DDataWritable>
 {
 @private
-  void           *_file;    // the file pointer
+  gzFile          _file;    // the file pointer
 }
 
 #endif