summaryrefslogtreecommitdiff
path: root/include/delphi/m_zlib.inc
diff options
context:
space:
mode:
Diffstat (limited to 'include/delphi/m_zlib.inc')
-rw-r--r--include/delphi/m_zlib.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/delphi/m_zlib.inc b/include/delphi/m_zlib.inc
index 6b1ad848e1..527410c1bd 100644
--- a/include/delphi/m_zlib.inc
+++ b/include/delphi/m_zlib.inc
@@ -96,7 +96,7 @@ type
end;
function deflateInit(var strm: z_stream; level: Integer): Integer; cdecl;
- external ZlibDLL name 'deflateInit';
+ external ZlibDLL name 'deflateInit_';
function deflate(var strm: z_stream; flush: Integer): Integer; cdecl;
external ZlibDLL name 'deflate';
@@ -105,7 +105,7 @@ function deflateEnd(var strm: z_stream): Integer; cdecl;
external ZlibDLL name 'deflateEnd';
function inflateInit(var strm: z_stream): Integer; cdecl;
- external ZlibDLL name 'inflateInit';
+ external ZlibDLL name 'inflateInit_';
function inflate(var strm: z_stream; flush: Integer): Integer; cdecl;
external ZlibDLL name 'inflate';