mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-08-14 20:07:11 +02:00
bin
cmake
module
Base
Core
Entity
Library
Misc
Vendor
AES256
B64
Hash
MDBC
cmake
examples
include
libmariadb
mariadb_config
plugins
win
win-iconv
zlib
amiga
contrib
ada
buffer_demo.adb
mtest.adb
read.adb
readme.txt
test.adb
zlib-streams.adb
zlib-streams.ads
zlib-thin.adb
zlib-thin.ads
zlib.adb
zlib.ads
zlib.gpr
amd64
asm686
blast
delphi
dotzlib
gcc_gvmat64
infback9
inflate86
iostream
iostream2
iostream3
masmx64
masmx86
minizip
pascal
puff
testzlib
untgz
vstudio
README.contrib
doc
examples
msdos
nintendods
old
os400
qnx
test
watcom
win32
CMakeLists.txt
ChangeLog
FAQ
INDEX
Makefile
Makefile.in
README
adler32.c
compress.c
configure
crc32.c
crc32.h
deflate.c
deflate.h
gzclose.c
gzguts.h
gzlib.c
gzread.c
gzwrite.c
infback.c
inffast.c
inffast.h
inffixed.h
inflate.c
inflate.h
inftrees.c
inftrees.h
make_vms.com
treebuild.xml
trees.c
trees.h
uncompr.c
zconf.h.cmakein
zconf.h.in
zconf.h.included
zlib.3
zlib.3.pdf
zlib.h
zlib.map
zlib.pc.cmakein
zlib.pc.in
zlib2ansi
zutil.c
zutil.h
CMakeLists.txt
COPYING.LIB
README
MaxmindDB
PUGIXML
SQLite
SimpleIni
SimpleSocket
TinyDir
Whirlpool
CMakeLists.txt
CMakeLists.txt
Core.cpp
Core.hpp
Logger.cpp
Logger.hpp
Main.cpp
Register.cpp
SqBase.hpp
sdk
sqrat
squirrel
vcmp
.gitignore
CMakeLists.txt
LICENSE
README.md
142 lines
3.3 KiB
Ada
142 lines
3.3 KiB
Ada
----------------------------------------------------------------
|
|
-- ZLib for Ada thick binding. --
|
|
-- --
|
|
-- Copyright (C) 2002-2003 Dmitriy Anisimkov --
|
|
-- --
|
|
-- Open source license information is in the zlib.ads file. --
|
|
----------------------------------------------------------------
|
|
|
|
-- $Id: zlib-thin.adb,v 1.8 2003/12/14 18:27:31 vagul Exp $
|
|
|
|
package body ZLib.Thin is
|
|
|
|
ZLIB_VERSION : constant Chars_Ptr := zlibVersion;
|
|
|
|
Z_Stream_Size : constant Int := Z_Stream'Size / System.Storage_Unit;
|
|
|
|
--------------
|
|
-- Avail_In --
|
|
--------------
|
|
|
|
function Avail_In (Strm : in Z_Stream) return UInt is
|
|
begin
|
|
return Strm.Avail_In;
|
|
end Avail_In;
|
|
|
|
---------------
|
|
-- Avail_Out --
|
|
---------------
|
|
|
|
function Avail_Out (Strm : in Z_Stream) return UInt is
|
|
begin
|
|
return Strm.Avail_Out;
|
|
end Avail_Out;
|
|
|
|
------------------
|
|
-- Deflate_Init --
|
|
------------------
|
|
|
|
function Deflate_Init
|
|
(strm : Z_Streamp;
|
|
level : Int;
|
|
method : Int;
|
|
windowBits : Int;
|
|
memLevel : Int;
|
|
strategy : Int)
|
|
return Int is
|
|
begin
|
|
return deflateInit2
|
|
(strm,
|
|
level,
|
|
method,
|
|
windowBits,
|
|
memLevel,
|
|
strategy,
|
|
ZLIB_VERSION,
|
|
Z_Stream_Size);
|
|
end Deflate_Init;
|
|
|
|
------------------
|
|
-- Inflate_Init --
|
|
------------------
|
|
|
|
function Inflate_Init (strm : Z_Streamp; windowBits : Int) return Int is
|
|
begin
|
|
return inflateInit2 (strm, windowBits, ZLIB_VERSION, Z_Stream_Size);
|
|
end Inflate_Init;
|
|
|
|
------------------------
|
|
-- Last_Error_Message --
|
|
------------------------
|
|
|
|
function Last_Error_Message (Strm : in Z_Stream) return String is
|
|
use Interfaces.C.Strings;
|
|
begin
|
|
if Strm.msg = Null_Ptr then
|
|
return "";
|
|
else
|
|
return Value (Strm.msg);
|
|
end if;
|
|
end Last_Error_Message;
|
|
|
|
------------
|
|
-- Set_In --
|
|
------------
|
|
|
|
procedure Set_In
|
|
(Strm : in out Z_Stream;
|
|
Buffer : in Voidp;
|
|
Size : in UInt) is
|
|
begin
|
|
Strm.Next_In := Buffer;
|
|
Strm.Avail_In := Size;
|
|
end Set_In;
|
|
|
|
------------------
|
|
-- Set_Mem_Func --
|
|
------------------
|
|
|
|
procedure Set_Mem_Func
|
|
(Strm : in out Z_Stream;
|
|
Opaque : in Voidp;
|
|
Alloc : in alloc_func;
|
|
Free : in free_func) is
|
|
begin
|
|
Strm.opaque := Opaque;
|
|
Strm.zalloc := Alloc;
|
|
Strm.zfree := Free;
|
|
end Set_Mem_Func;
|
|
|
|
-------------
|
|
-- Set_Out --
|
|
-------------
|
|
|
|
procedure Set_Out
|
|
(Strm : in out Z_Stream;
|
|
Buffer : in Voidp;
|
|
Size : in UInt) is
|
|
begin
|
|
Strm.Next_Out := Buffer;
|
|
Strm.Avail_Out := Size;
|
|
end Set_Out;
|
|
|
|
--------------
|
|
-- Total_In --
|
|
--------------
|
|
|
|
function Total_In (Strm : in Z_Stream) return ULong is
|
|
begin
|
|
return Strm.Total_In;
|
|
end Total_In;
|
|
|
|
---------------
|
|
-- Total_Out --
|
|
---------------
|
|
|
|
function Total_Out (Strm : in Z_Stream) return ULong is
|
|
begin
|
|
return Strm.Total_Out;
|
|
end Total_Out;
|
|
|
|
end ZLib.Thin;
|