mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-09 19:17:21 +01:00
* removed individual size_t definition from libpng (with size_t = longint it was even wrong!)
git-svn-id: trunk@12606 -
This commit is contained in:
parent
592a95f935
commit
2ff803d3b5
@ -13,6 +13,7 @@ interface
|
||||
{$PACKRECORDS C}
|
||||
|
||||
uses
|
||||
ctypes,
|
||||
zlib;
|
||||
|
||||
Const
|
||||
@ -27,7 +28,6 @@ Const
|
||||
{$endif windows}
|
||||
|
||||
type
|
||||
size_t = longint;
|
||||
time_t = longint;
|
||||
int = longint;
|
||||
z_stream = TZStream;
|
||||
@ -48,7 +48,7 @@ type
|
||||
pppng_uint_16 = ^ppng_uint_16;
|
||||
pppng_int_16 = ^ppng_int_16;
|
||||
pppng_byte = ^ppng_byte;
|
||||
png_size_t = size_t;
|
||||
png_size_t = csize_t;
|
||||
png_fixed_point = png_int_32;
|
||||
ppng_fixed_point = ^png_fixed_point;
|
||||
pppng_fixed_point = ^ppng_fixed_point;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user