Fixed free_fun function signature in zlib

fix! 2d00cab5
This commit is contained in:
Sergey Larin 2021-03-01 18:04:55 +03:00 committed by FPK
parent b26463ed99
commit 00efaece74

View File

@ -87,7 +87,7 @@ type
alloc_func = function(opaque: pointer; items: uInt; size: uInt): pointer; cdecl;
TAllocfunc = alloc_func;
free_func = procedure(opaque: pointer; items: uInt; size: uInt); cdecl;
free_func = procedure(opaque: pointer; address: pointer); cdecl;
TFreeFunc = free_func;
internal_statep = ^internal_state;