mirror of
https://github.com/opencv/opencv.git
synced 2024-12-03 00: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
65 lines
2.2 KiB
Modula-2
65 lines
2.2 KiB
Modula-2
; zlib data compression library
|
|
EXPORTS
|
|
; basic functions
|
|
@ZLIB_SYMBOL_PREFIX@zlibVersion
|
|
@ZLIB_SYMBOL_PREFIX@deflate
|
|
@ZLIB_SYMBOL_PREFIX@deflateEnd
|
|
@ZLIB_SYMBOL_PREFIX@inflate
|
|
@ZLIB_SYMBOL_PREFIX@inflateEnd
|
|
; advanced functions
|
|
@ZLIB_SYMBOL_PREFIX@deflateSetDictionary
|
|
@ZLIB_SYMBOL_PREFIX@deflateGetDictionary
|
|
@ZLIB_SYMBOL_PREFIX@deflateCopy
|
|
@ZLIB_SYMBOL_PREFIX@deflateReset
|
|
@ZLIB_SYMBOL_PREFIX@deflateParams
|
|
@ZLIB_SYMBOL_PREFIX@deflateTune
|
|
@ZLIB_SYMBOL_PREFIX@deflateBound
|
|
@ZLIB_SYMBOL_PREFIX@deflatePending
|
|
@ZLIB_SYMBOL_PREFIX@deflatePrime
|
|
@ZLIB_SYMBOL_PREFIX@deflateSetHeader
|
|
@ZLIB_SYMBOL_PREFIX@inflateSetDictionary
|
|
@ZLIB_SYMBOL_PREFIX@inflateGetDictionary
|
|
@ZLIB_SYMBOL_PREFIX@inflateSync
|
|
@ZLIB_SYMBOL_PREFIX@inflateCopy
|
|
@ZLIB_SYMBOL_PREFIX@inflateReset
|
|
@ZLIB_SYMBOL_PREFIX@inflateReset2
|
|
@ZLIB_SYMBOL_PREFIX@inflatePrime
|
|
@ZLIB_SYMBOL_PREFIX@inflateMark
|
|
@ZLIB_SYMBOL_PREFIX@inflateGetHeader
|
|
@ZLIB_SYMBOL_PREFIX@inflateBack
|
|
@ZLIB_SYMBOL_PREFIX@inflateBackEnd
|
|
@ZLIB_SYMBOL_PREFIX@zlibCompileFlags
|
|
; utility functions
|
|
@ZLIB_SYMBOL_PREFIX@compress
|
|
@ZLIB_SYMBOL_PREFIX@compress2
|
|
@ZLIB_SYMBOL_PREFIX@compressBound
|
|
@ZLIB_SYMBOL_PREFIX@uncompress
|
|
@ZLIB_SYMBOL_PREFIX@uncompress2
|
|
; large file functions
|
|
@ZLIB_SYMBOL_PREFIX@adler32_combine64
|
|
@ZLIB_SYMBOL_PREFIX@crc32_combine64
|
|
@ZLIB_SYMBOL_PREFIX@crc32_combine_gen64
|
|
; checksum functions
|
|
@ZLIB_SYMBOL_PREFIX@adler32
|
|
@ZLIB_SYMBOL_PREFIX@adler32_z
|
|
@ZLIB_SYMBOL_PREFIX@crc32
|
|
@ZLIB_SYMBOL_PREFIX@crc32_z
|
|
@ZLIB_SYMBOL_PREFIX@adler32_combine
|
|
@ZLIB_SYMBOL_PREFIX@crc32_combine
|
|
@ZLIB_SYMBOL_PREFIX@crc32_combine_gen
|
|
@ZLIB_SYMBOL_PREFIX@crc32_combine_op
|
|
; various hacks, don't look :)
|
|
@ZLIB_SYMBOL_PREFIX@deflateInit_
|
|
@ZLIB_SYMBOL_PREFIX@deflateInit2_
|
|
@ZLIB_SYMBOL_PREFIX@inflateInit_
|
|
@ZLIB_SYMBOL_PREFIX@inflateInit2_
|
|
@ZLIB_SYMBOL_PREFIX@inflateBackInit_
|
|
@ZLIB_SYMBOL_PREFIX@zError
|
|
@ZLIB_SYMBOL_PREFIX@inflateSyncPoint
|
|
@ZLIB_SYMBOL_PREFIX@get_crc_table
|
|
@ZLIB_SYMBOL_PREFIX@inflateUndermine
|
|
@ZLIB_SYMBOL_PREFIX@inflateValidate
|
|
@ZLIB_SYMBOL_PREFIX@inflateCodesUsed
|
|
@ZLIB_SYMBOL_PREFIX@inflateResetKeep
|
|
@ZLIB_SYMBOL_PREFIX@deflateResetKeep
|