1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
/*
* zlibtclStubInit.c --
*/
#include "zlibtcl.h"
/*
* Remove macros that will interfere with the definitions below.
*/
/*
* WARNING: The contents of this file is automatically generated by the
* genStubs.tcl script. Any modifications to the function declarations
* below should be made in the zlibtcl.decls script.
*/
MODULE_SCOPE const ZlibtclStubs zlibtclStubs;
/* !BEGIN!: Do not edit below this line. */
const ZlibtclStubs zlibtclStubs = {
TCL_STUB_MAGIC,
0,
zlibVersion, /* 0 */
zError, /* 1 */
crc32, /* 2 */
adler32, /* 3 */
0, /* 4 */
0, /* 5 */
0, /* 6 */
0, /* 7 */
0, /* 8 */
0, /* 9 */
deflateInit_, /* 10 */
deflateInit2_, /* 11 */
deflate, /* 12 */
deflateEnd, /* 13 */
deflateSetDictionary, /* 14 */
deflateCopy, /* 15 */
deflateReset, /* 16 */
deflateParams, /* 17 */
compress, /* 18 */
compress2, /* 19 */
inflateInit_, /* 20 */
inflateInit2_, /* 21 */
inflate, /* 22 */
inflateEnd, /* 23 */
inflateSetDictionary, /* 24 */
inflateSync, /* 25 */
inflateReset, /* 26 */
uncompress, /* 27 */
inflateReset2, /* 28 */
inflateValidate, /* 29 */
gzopen, /* 30 */
gzdopen, /* 31 */
gzsetparams, /* 32 */
gzread, /* 33 */
gzwrite, /* 34 */
gzprintf, /* 35 */
gzputs, /* 36 */
gzgets, /* 37 */
gzputc, /* 38 */
gzgetc, /* 39 */
gzflush, /* 40 */
gzseek, /* 41 */
gzrewind, /* 42 */
gztell, /* 43 */
gzeof, /* 44 */
gzclose, /* 45 */
gzerror, /* 46 */
};
/* !END!: Do not edit above this line. */
|