-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add zlib-ng 2.2.3 #109
base: master
Are you sure you want to change the base?
Add zlib-ng 2.2.3 #109
Conversation
@data-man: Can you update your PR with latest zlib-ng? |
Sure, I'll try today. |
Actual version of Zlib-ng is 2.2.3. 2.1.0 is quite old and normally 2.2.3 is done here. |
I'm working on this, some progress with
|
Updated to zlib-ng 2.2.3. -typedef uint32_t (*zng_in_func) (void *, const uint8_t * *);
-typedef int32_t (*zng_out_func) (void *, uint8_t *, uint32_t);
+typedef uint32_t (*in_func) (void *, const uint8_t * *);
+typedef int32_t (*out_func) (void *, uint8_t *, uint32_t);
Z_EXTERN Z_EXPORT
-int32_t zng_inflateBack(zng_stream *strm, zng_in_func in, void *in_desc, zng_out_func out, void *out_desc);
+int32_t zng_inflateBack(zng_stream *strm, in_func in, void *in_desc, out_func out, void *out_desc);
/* In -int32_t Z_EXPORT PREFIX(inflateBack)(PREFIX3(stream) *strm, zng_in_func in, void *in_desc, zng_out_func out, void *out_desc) {
+int32_t Z_EXPORT PREFIX(inflateBack)(PREFIX3(stream) *strm, in_func in, void *in_desc, out_func out, void *out_desc) { |
No description provided.