mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 11:10:21 +08:00
85923c8f30
Update zlib-ng to 2.2.1 #26113 Release: https://github.com/zlib-ng/zlib-ng/releases/tag/2.2.1 ARM diagnostics patch: https://github.com/zlib-ng/zlib-ng/pull/1774 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
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_deflateInit
|
|
@ZLIB_SYMBOL_PREFIX@zng_deflateInit2
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflate
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateEnd
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateInit
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateInit2
|
|
@ZLIB_SYMBOL_PREFIX@zng_inflateBackInit
|
|
; 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_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
|