|
Last change
on this file since 1202 was 1096, checked in by s10k, 8 years ago |
|
Added zlib, quazip, basicxmlsyntaxhighlighter, conditionalsemaphore and linenumberdisplay libraries. zlib and quazip are pre-compiled, but you can compile them yourself, just delete the dll files (or equivalent binary files to your OS)
|
|
File size:
1.4 KB
|
| Line | |
|---|
| 1 | ; zlib data compression library
|
|---|
| 2 | EXPORTS
|
|---|
| 3 | ; basic functions
|
|---|
| 4 | zlibVersion
|
|---|
| 5 | deflate
|
|---|
| 6 | deflateEnd
|
|---|
| 7 | inflate
|
|---|
| 8 | inflateEnd
|
|---|
| 9 | ; advanced functions
|
|---|
| 10 | deflateSetDictionary
|
|---|
| 11 | deflateCopy
|
|---|
| 12 | deflateReset
|
|---|
| 13 | deflateParams
|
|---|
| 14 | deflateTune
|
|---|
| 15 | deflateBound
|
|---|
| 16 | deflatePending
|
|---|
| 17 | deflatePrime
|
|---|
| 18 | deflateSetHeader
|
|---|
| 19 | inflateSetDictionary
|
|---|
| 20 | inflateGetDictionary
|
|---|
| 21 | inflateSync
|
|---|
| 22 | inflateCopy
|
|---|
| 23 | inflateReset
|
|---|
| 24 | inflateReset2
|
|---|
| 25 | inflatePrime
|
|---|
| 26 | inflateMark
|
|---|
| 27 | inflateGetHeader
|
|---|
| 28 | inflateBack
|
|---|
| 29 | inflateBackEnd
|
|---|
| 30 | zlibCompileFlags
|
|---|
| 31 | ; utility functions
|
|---|
| 32 | compress
|
|---|
| 33 | compress2
|
|---|
| 34 | compressBound
|
|---|
| 35 | uncompress
|
|---|
| 36 | gzopen
|
|---|
| 37 | gzdopen
|
|---|
| 38 | gzbuffer
|
|---|
| 39 | gzsetparams
|
|---|
| 40 | gzread
|
|---|
| 41 | gzwrite
|
|---|
| 42 | gzprintf
|
|---|
| 43 | gzvprintf
|
|---|
| 44 | gzputs
|
|---|
| 45 | gzgets
|
|---|
| 46 | gzputc
|
|---|
| 47 | gzgetc
|
|---|
| 48 | gzungetc
|
|---|
| 49 | gzflush
|
|---|
| 50 | gzseek
|
|---|
| 51 | gzrewind
|
|---|
| 52 | gztell
|
|---|
| 53 | gzoffset
|
|---|
| 54 | gzeof
|
|---|
| 55 | gzdirect
|
|---|
| 56 | gzclose
|
|---|
| 57 | gzclose_r
|
|---|
| 58 | gzclose_w
|
|---|
| 59 | gzerror
|
|---|
| 60 | gzclearerr
|
|---|
| 61 | ; large file functions
|
|---|
| 62 | gzopen64
|
|---|
| 63 | gzseek64
|
|---|
| 64 | gztell64
|
|---|
| 65 | gzoffset64
|
|---|
| 66 | adler32_combine64
|
|---|
| 67 | crc32_combine64
|
|---|
| 68 | ; checksum functions
|
|---|
| 69 | adler32
|
|---|
| 70 | crc32
|
|---|
| 71 | adler32_combine
|
|---|
| 72 | crc32_combine
|
|---|
| 73 | ; various hacks, don't look :)
|
|---|
| 74 | deflateInit_
|
|---|
| 75 | deflateInit2_
|
|---|
| 76 | inflateInit_
|
|---|
| 77 | inflateInit2_
|
|---|
| 78 | inflateBackInit_
|
|---|
| 79 | gzgetc_
|
|---|
| 80 | zError
|
|---|
| 81 | inflateSyncPoint
|
|---|
| 82 | get_crc_table
|
|---|
| 83 | inflateUndermine
|
|---|
| 84 | inflateResetKeep
|
|---|
| 85 | deflateResetKeep
|
|---|
| 86 | gzopen_w
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.