mirror of
https://github.com/GerbilSoft/zlib-ng.git
synced 2025-06-18 11:35:35 -04:00

This is useful when zlib-ng is embedded into another library, such as ITK: https://itk.org/ Closes #1025. Co-authored-by: Mika Lindqvist <postmaster@raasu.org>
61 lines
2.3 KiB
Modula-2
61 lines
2.3 KiB
Modula-2
; zlib-ng data compression library
|
|
EXPORTS
|
|
; basic functions
|
|
@ZLIB_SYMBOL_PREFIX@zlibng_version
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflate
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateEnd
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflate
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateEnd
|
|
; advanced functions
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateSetDictionary
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateGetDictionary
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateCopy
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateReset
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateParams
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateTune
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateBound
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflatePending
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflatePrime
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateSetHeader
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateSetParams
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateGetParams
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateSetDictionary
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateGetDictionary
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateSync
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateCopy
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateReset
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateReset2
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflatePrime
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateMark
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateGetHeader
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateBack
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateBackEnd
|
|
@ZLIB_SYMBOL_PREFIX@zng_zlibCompileFlags
|
|
; utility functions
|
|
@ZLIB_SYMBOL_PREFIX@zng_compress
|
|
@ZLIB_SYMBOL_PREFIX@zng_compress2
|
|
@ZLIB_SYMBOL_PREFIX@zng_compressBound
|
|
@ZLIB_SYMBOL_PREFIX@zng_uncompress
|
|
@ZLIB_SYMBOL_PREFIX@zng_uncompress2
|
|
; checksum functions
|
|
@ZLIB_SYMBOL_PREFIX@zng_adler32
|
|
@ZLIB_SYMBOL_PREFIX@zng_adler32_z
|
|
@ZLIB_SYMBOL_PREFIX@zng_crc32
|
|
@ZLIB_SYMBOL_PREFIX@zng_crc32_z
|
|
@ZLIB_SYMBOL_PREFIX@zng_adler32_combine
|
|
@ZLIB_SYMBOL_PREFIX@zng_crc32_combine
|
|
; various hacks, don't look :)
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateInit_
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateInit2_
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateInit_
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateInit2_
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateBackInit_
|
|
@ZLIB_SYMBOL_PREFIX@zng_zError
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateSyncPoint
|
|
@ZLIB_SYMBOL_PREFIX@zng_get_crc_table
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateUndermine
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateValidate
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateCodesUsed
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateResetKeep
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateResetKeep
|