zlibpas.pas (muscle7.61) | : | zlibpas.pas (muscle7.62) | ||
---|---|---|---|---|
skipping to change at line 13 | skipping to change at line 13 | |||
* Copyright (C) 2003 Cosmin Truta. | * Copyright (C) 2003 Cosmin Truta. | |||
* Derived from original sources by Bob Dellaca. | * Derived from original sources by Bob Dellaca. | |||
* For conditions of distribution and use, see copyright notice in readme.txt | * For conditions of distribution and use, see copyright notice in readme.txt | |||
*) | *) | |||
unit zlibpas; | unit zlibpas; | |||
interface | interface | |||
const | const | |||
ZLIB_VERSION = '1.2.8'; | ZLIB_VERSION = '1.2.11'; | |||
ZLIB_VERNUM = $1280; | ZLIB_VERNUM = $12a0; | |||
type | type | |||
alloc_func = function(opaque: Pointer; items, size: Integer): Pointer; | alloc_func = function(opaque: Pointer; items, size: Integer): Pointer; | |||
cdecl; | cdecl; | |||
free_func = procedure(opaque, address: Pointer); | free_func = procedure(opaque, address: Pointer); | |||
cdecl; | cdecl; | |||
in_func = function(opaque: Pointer; var buf: PByte): Integer; | in_func = function(opaque: Pointer; var buf: PByte): Integer; | |||
cdecl; | cdecl; | |||
out_func = function(opaque: Pointer; buf: PByte; size: Integer): Integer; | out_func = function(opaque: Pointer; buf: PByte; size: Integer): Integer; | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |