Differences From Artifact [cc821f48ad26f7f1]:
- File
src/libbz2/bzlib.d
- 2011-02-23 12:53:16 - part of checkin [c2b7a98c21] on branch trunk - Initial import (user: kinaba) [annotate]
To Artifact [c4a299078e088cf2]:
- File
src/libbz2/bzlib.d
- 2015-04-21 10:46:55 - part of checkin [4e2933c620] on branch trunk - Rebased to the latest verson dmd 2.067. Not yet verified the outcome. (user: kinaba) [annotate]
97 char *next_out; 97 char *next_out;
98 uint avail_out; 98 uint avail_out;
99 uint total_out_lo32; 99 uint total_out_lo32;
100 uint total_out_hi32; 100 uint total_out_hi32;
101 101
102 void *state; 102 void *state;
103 103
104 void *(*bzalloc)(void *,int,int); | 104 void* function(void *,int,int) bzalloc;
105 void (*bzfree)(void *,void *); | 105 void function(void *,void *) bzfree;
106 void *opaque; 106 void *opaque;
107 } 107 }
108 108
109 extern(Windows) 109 extern(Windows)
110 { 110 {
111 /*-- Core (low-level) library functions --*/ 111 /*-- Core (low-level) library functions --*/
112 112