mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
Remove unneeded files from /winlibs
Remove *.a and *.dll from .gitignore
This commit is contained in:
parent
202914653f
commit
e41f8e9384
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,5 +1,4 @@
|
|||
*.[oa]
|
||||
*.dll
|
||||
*.o
|
||||
*~
|
||||
|
||||
locale/*.qm
|
||||
|
|
|
@ -1,56 +0,0 @@
|
|||
/* Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
This file is part of the GNU CHARSET Library.
|
||||
|
||||
The GNU CHARSET Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public License as
|
||||
published by the Free Software Foundation; either version 2 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
The GNU CHARSET Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with the GNU CHARSET Library; see the file COPYING.LIB. If not,
|
||||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
#ifndef _LIBCHARSET_H
|
||||
#define _LIBCHARSET_H
|
||||
|
||||
#ifdef LIBCHARSET_STATIC
|
||||
#define LIBCHARSET_DLL_EXPORTED
|
||||
#else /* LIBCHARSET_STATIC */
|
||||
#ifdef BUILDING_LIBCHARSET
|
||||
#define LIBCHARSET_DLL_EXPORTED __declspec(dllexport)
|
||||
#else
|
||||
#define LIBCHARSET_DLL_EXPORTED __declspec(dllimport)
|
||||
#endif
|
||||
#endif /* LIBCHARSET_STATIC */
|
||||
|
||||
#include <localcharset.h>
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
/* Support for relocatable packages. */
|
||||
|
||||
/* Sets the original and the current installation prefix of the package.
|
||||
Relocation simply replaces a pathname starting with the original prefix
|
||||
by the corresponding pathname with the current prefix instead. Both
|
||||
prefixes should be directory names without trailing slash (i.e. use ""
|
||||
instead of "/"). */
|
||||
extern LIBCHARSET_DLL_EXPORTED void libcharset_set_relocation_prefix (const char *orig_prefix,
|
||||
const char *curr_prefix);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#endif /* _LIBCHARSET_H */
|
|
@ -1,51 +0,0 @@
|
|||
/* Determine a canonical name for the current locale's character encoding.
|
||||
Copyright (C) 2000-2003 Free Software Foundation, Inc.
|
||||
This file is part of the GNU CHARSET Library.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published
|
||||
by the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public
|
||||
License along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
||||
USA. */
|
||||
|
||||
#ifndef _LOCALCHARSET_H
|
||||
#define _LOCALCHARSET_H
|
||||
|
||||
#ifdef LIBCHARSET_STATIC
|
||||
#define LIBCHARSET_DLL_EXPORTED
|
||||
#else /* LIBCHARSET_STATIC */
|
||||
#ifdef BUILDING_LIBCHARSET
|
||||
#define LIBCHARSET_DLL_EXPORTED __declspec(dllexport)
|
||||
#else
|
||||
#define LIBCHARSET_DLL_EXPORTED __declspec(dllimport)
|
||||
#endif
|
||||
#endif /* LIBCHARSET_STATIC */
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
/* Determine the current locale's character encoding, and canonicalize it
|
||||
into one of the canonical names listed in config.charset.
|
||||
The result must not be freed; it is statically allocated.
|
||||
If the canonical name cannot be determined, the result is a non-canonical
|
||||
name. */
|
||||
extern LIBCHARSET_DLL_EXPORTED const char * locale_charset (void);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#endif /* _LOCALCHARSET_H */
|
|
@ -1,121 +0,0 @@
|
|||
/* munch header file */
|
||||
|
||||
#define MAX_LN_LEN 200
|
||||
#define MAX_WD_LEN 200
|
||||
#define MAX_PREFIXES 256
|
||||
#define MAX_SUFFIXES 256
|
||||
#define MAX_ROOTS 20
|
||||
#define MAX_WORDS 5000
|
||||
|
||||
#define ROTATE_LEN 5
|
||||
|
||||
#define ROTATE(v,q) \
|
||||
(v) = ((v) << (q)) | (((v) >> (32 - q)) & ((1 << (q))-1));
|
||||
|
||||
#define SET_SIZE 256
|
||||
|
||||
#define XPRODUCT (1 << 0)
|
||||
|
||||
/* the affix table entry */
|
||||
|
||||
struct affent
|
||||
{
|
||||
char * appnd;
|
||||
char * strip;
|
||||
short appndl;
|
||||
short stripl;
|
||||
char achar;
|
||||
char xpflg;
|
||||
short numconds;
|
||||
char conds[SET_SIZE];
|
||||
};
|
||||
|
||||
|
||||
struct affixptr
|
||||
{
|
||||
struct affent * aep;
|
||||
int num;
|
||||
};
|
||||
|
||||
/* the prefix and suffix table */
|
||||
int numpfx; /* Number of prefixes in table */
|
||||
int numsfx; /* Number of suffixes in table */
|
||||
|
||||
/* the prefix table */
|
||||
struct affixptr ptable[MAX_PREFIXES];
|
||||
|
||||
/* the suffix table */
|
||||
struct affixptr stable[MAX_SUFFIXES];
|
||||
|
||||
|
||||
/* data structure to store results of lookups */
|
||||
struct matches
|
||||
{
|
||||
struct hentry * hashent; /* hash table entry */
|
||||
struct affent * prefix; /* Prefix used, or NULL */
|
||||
struct affent * suffix; /* Suffix used, or NULL */
|
||||
};
|
||||
|
||||
int numroots; /* number of root words found */
|
||||
struct matches roots[MAX_ROOTS]; /* list of root words found */
|
||||
|
||||
/* hashing stuff */
|
||||
|
||||
struct hentry
|
||||
{
|
||||
char * word;
|
||||
char * affstr;
|
||||
struct hentry * next;
|
||||
int keep;
|
||||
};
|
||||
|
||||
|
||||
int tablesize;
|
||||
struct hentry * tableptr;
|
||||
|
||||
/* unmunch stuff */
|
||||
|
||||
int numwords; /* number of words found */
|
||||
struct dwords
|
||||
{
|
||||
char * word;
|
||||
int pallow;
|
||||
};
|
||||
|
||||
struct dwords wlist[MAX_WORDS]; /* list words found */
|
||||
|
||||
|
||||
/* the routines */
|
||||
|
||||
int parse_aff_file(FILE* afflst);
|
||||
|
||||
void encodeit(struct affent * ptr, char * cs);
|
||||
|
||||
int load_tables(FILE * wrdlst);
|
||||
|
||||
int hash(const char *);
|
||||
|
||||
int add_word(char *);
|
||||
|
||||
struct hentry * lookup(const char *);
|
||||
|
||||
void aff_chk (const char * word, int len);
|
||||
|
||||
void pfx_chk (const char * word, int len, struct affent* ep, int num);
|
||||
|
||||
void suf_chk (const char * word, int len, struct affent * ep, int num,
|
||||
struct affent * pfxent, int cpflag);
|
||||
|
||||
void add_affix_char(struct hentry * hent, char ac);
|
||||
|
||||
int expand_rootword(const char *, int, const char*, int);
|
||||
|
||||
void pfx_add (const char * word, int len, struct affent* ep, int num);
|
||||
|
||||
void suf_add (const char * word, int len, struct affent * ep, int num);
|
||||
|
||||
char * mystrsep(char ** stringp, const char delim);
|
||||
|
||||
char * mystrdup(const char * s);
|
||||
|
||||
void mychomp(char * s);
|
|
@ -1,78 +0,0 @@
|
|||
/* unmunch header file */
|
||||
|
||||
#define MAX_LN_LEN 200
|
||||
#define MAX_WD_LEN 200
|
||||
#define MAX_PREFIXES 256
|
||||
#define MAX_SUFFIXES 256
|
||||
#define MAX_WORDS 500000
|
||||
|
||||
#define ROTATE_LEN 5
|
||||
|
||||
#define ROTATE(v,q) \
|
||||
(v) = ((v) << (q)) | (((v) >> (32 - q)) & ((1 << (q))-1));
|
||||
|
||||
#define SET_SIZE 256
|
||||
|
||||
#define XPRODUCT (1 << 0)
|
||||
|
||||
/* the affix table entry */
|
||||
|
||||
struct affent
|
||||
{
|
||||
char * appnd;
|
||||
char * strip;
|
||||
short appndl;
|
||||
short stripl;
|
||||
char achar;
|
||||
char xpflg;
|
||||
short numconds;
|
||||
char conds[SET_SIZE];
|
||||
};
|
||||
|
||||
|
||||
struct affixptr
|
||||
{
|
||||
struct affent * aep;
|
||||
int num;
|
||||
};
|
||||
|
||||
/* the prefix and suffix table */
|
||||
int numpfx; /* Number of prefixes in table */
|
||||
int numsfx; /* Number of suffixes in table */
|
||||
|
||||
/* the prefix table */
|
||||
struct affixptr ptable[MAX_PREFIXES];
|
||||
|
||||
/* the suffix table */
|
||||
struct affixptr stable[MAX_SUFFIXES];
|
||||
|
||||
int fullstrip;
|
||||
|
||||
|
||||
int numwords; /* number of words found */
|
||||
struct dwords
|
||||
{
|
||||
char * word;
|
||||
int pallow;
|
||||
};
|
||||
|
||||
struct dwords wlist[MAX_WORDS]; /* list words found */
|
||||
|
||||
|
||||
/* the routines */
|
||||
|
||||
int parse_aff_file(FILE* afflst);
|
||||
|
||||
void encodeit(struct affent * ptr, char * cs);
|
||||
|
||||
int expand_rootword(const char *, int, const char*, int);
|
||||
|
||||
void pfx_add (const char * word, int len, struct affent* ep, int num);
|
||||
|
||||
void suf_add (const char * word, int len, struct affent * ep, int num);
|
||||
|
||||
char * mystrsep(char ** stringp, const char delim);
|
||||
|
||||
char * mystrdup(const char * s);
|
||||
|
||||
void mychomp(char * s);
|
|
@ -1,112 +0,0 @@
|
|||
/********************************************************************
|
||||
* *
|
||||
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
|
||||
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
|
||||
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
|
||||
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
|
||||
* *
|
||||
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
|
||||
* by the Xiph.Org Foundation http://www.xiph.org/ *
|
||||
* *
|
||||
********************************************************************
|
||||
|
||||
function: vorbis encode-engine setup
|
||||
last mod: $Id: vorbisenc.h 13293 2007-07-24 00:09:47Z xiphmont $
|
||||
|
||||
********************************************************************/
|
||||
|
||||
#ifndef _OV_ENC_H_
|
||||
#define _OV_ENC_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#include "codec.h"
|
||||
|
||||
extern int vorbis_encode_init(vorbis_info *vi,
|
||||
long channels,
|
||||
long rate,
|
||||
|
||||
long max_bitrate,
|
||||
long nominal_bitrate,
|
||||
long min_bitrate);
|
||||
|
||||
extern int vorbis_encode_setup_managed(vorbis_info *vi,
|
||||
long channels,
|
||||
long rate,
|
||||
|
||||
long max_bitrate,
|
||||
long nominal_bitrate,
|
||||
long min_bitrate);
|
||||
|
||||
extern int vorbis_encode_setup_vbr(vorbis_info *vi,
|
||||
long channels,
|
||||
long rate,
|
||||
|
||||
float quality /* quality level from 0. (lo) to 1. (hi) */
|
||||
);
|
||||
|
||||
extern int vorbis_encode_init_vbr(vorbis_info *vi,
|
||||
long channels,
|
||||
long rate,
|
||||
|
||||
float base_quality /* quality level from 0. (lo) to 1. (hi) */
|
||||
);
|
||||
|
||||
extern int vorbis_encode_setup_init(vorbis_info *vi);
|
||||
|
||||
extern int vorbis_encode_ctl(vorbis_info *vi,int number,void *arg);
|
||||
|
||||
/* deprecated rate management supported only for compatability */
|
||||
#define OV_ECTL_RATEMANAGE_GET 0x10
|
||||
#define OV_ECTL_RATEMANAGE_SET 0x11
|
||||
#define OV_ECTL_RATEMANAGE_AVG 0x12
|
||||
#define OV_ECTL_RATEMANAGE_HARD 0x13
|
||||
|
||||
struct ovectl_ratemanage_arg {
|
||||
int management_active;
|
||||
|
||||
long bitrate_hard_min;
|
||||
long bitrate_hard_max;
|
||||
double bitrate_hard_window;
|
||||
|
||||
long bitrate_av_lo;
|
||||
long bitrate_av_hi;
|
||||
double bitrate_av_window;
|
||||
double bitrate_av_window_center;
|
||||
};
|
||||
|
||||
|
||||
/* new rate setup */
|
||||
#define OV_ECTL_RATEMANAGE2_GET 0x14
|
||||
#define OV_ECTL_RATEMANAGE2_SET 0x15
|
||||
|
||||
struct ovectl_ratemanage2_arg {
|
||||
int management_active;
|
||||
|
||||
long bitrate_limit_min_kbps;
|
||||
long bitrate_limit_max_kbps;
|
||||
long bitrate_limit_reservoir_bits;
|
||||
double bitrate_limit_reservoir_bias;
|
||||
|
||||
long bitrate_average_kbps;
|
||||
double bitrate_average_damping;
|
||||
};
|
||||
|
||||
|
||||
|
||||
#define OV_ECTL_LOWPASS_GET 0x20
|
||||
#define OV_ECTL_LOWPASS_SET 0x21
|
||||
|
||||
#define OV_ECTL_IBLOCK_GET 0x30
|
||||
#define OV_ECTL_IBLOCK_SET 0x31
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#endif
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,6 +0,0 @@
|
|||
; h:\mingw\3.3.1\bin\dlltool.exe --export-all-symbols --output-def=libcharset1.def localcharset.o relocatable.o libcharset-dllversion.o libcharset-dll-rc.o
|
||||
EXPORTS
|
||||
libcharset_relocate @ 1 ;
|
||||
libcharset_set_relocation_prefix @ 2 ;
|
||||
locale_charset @ 3 ;
|
||||
DllGetVersion @ 4 ;
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,14 +0,0 @@
|
|||
; h:\mingw\3.3.1\bin\dlltool.exe --export-all-symbols --output-def=libiconv2.def iconv.o localcharset.o relocatable.o libiconv-dllversion.o libiconv-dll-rc.o
|
||||
EXPORTS
|
||||
DllGetVersion @ 1 ;
|
||||
_libiconv_version @ 2 DATA ;
|
||||
aliases2_lookup @ 3 ;
|
||||
aliases_lookup @ 4 ;
|
||||
libiconv @ 5 ;
|
||||
libiconv_close @ 6 ;
|
||||
libiconv_open @ 7 ;
|
||||
libiconv_relocate @ 8 ;
|
||||
libiconv_set_relocation_prefix @ 9 ;
|
||||
libiconvctl @ 10 ;
|
||||
libiconvlist @ 11 ;
|
||||
locale_charset @ 12 ;
|
|
@ -1,35 +0,0 @@
|
|||
# libogg.la - a libtool library file
|
||||
# Generated by ltmain.sh - GNU libtool 1.5.6 (1.1220.2.95 2004/04/11 05:50:42) Debian: 224 $
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname=''
|
||||
|
||||
# Names of this library.
|
||||
library_names=''
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libogg.a'
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=' -L/home/ikm/ext/goldendict-windows/mingw32/lib'
|
||||
|
||||
# Version information for libogg.
|
||||
current=5
|
||||
age=5
|
||||
revision=3
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=yes
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/home/ikm/ext/goldendict-windows/mingw32/lib'
|
Binary file not shown.
|
@ -1,35 +0,0 @@
|
|||
# libvorbis.la - a libtool library file
|
||||
# Generated by ltmain.sh - GNU libtool 1.5.22 Debian 1.5.22-4 (1.1220.2.365 2005/12/18 22:14:06)
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname=''
|
||||
|
||||
# Names of this library.
|
||||
library_names=''
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libvorbis.a'
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=' -L/home/ikm/ext/goldendict-windows/mingw32/lib /home/ikm/ext/goldendict-windows/mingw32/lib/libogg.la'
|
||||
|
||||
# Version information for libvorbis.
|
||||
current=4
|
||||
age=4
|
||||
revision=0
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=yes
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/home/ikm/ext/goldendict-windows/mingw32/lib'
|
Binary file not shown.
|
@ -1,35 +0,0 @@
|
|||
# libvorbisenc.la - a libtool library file
|
||||
# Generated by ltmain.sh - GNU libtool 1.5.22 Debian 1.5.22-4 (1.1220.2.365 2005/12/18 22:14:06)
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname=''
|
||||
|
||||
# Names of this library.
|
||||
library_names=''
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libvorbisenc.a'
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=' -L/home/ikm/ext/goldendict-windows/mingw32/lib /home/ikm/ext/goldendict-windows/mingw32/lib/libvorbis.la /home/ikm/ext/goldendict-windows/mingw32/lib/libogg.la'
|
||||
|
||||
# Version information for libvorbisenc.
|
||||
current=2
|
||||
age=0
|
||||
revision=3
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=yes
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/home/ikm/ext/goldendict-windows/mingw32/lib'
|
|
@ -1,35 +0,0 @@
|
|||
# libvorbisfile.la - a libtool library file
|
||||
# Generated by ltmain.sh - GNU libtool 1.5.22 Debian 1.5.22-4 (1.1220.2.365 2005/12/18 22:14:06)
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname=''
|
||||
|
||||
# Names of this library.
|
||||
library_names=''
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libvorbisfile.a'
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=' -L/home/ikm/ext/goldendict-windows/mingw32/lib /home/ikm/ext/goldendict-windows/mingw32/lib/libvorbis.la /home/ikm/ext/goldendict-windows/mingw32/lib/libogg.la'
|
||||
|
||||
# Version information for libvorbisfile.
|
||||
current=5
|
||||
age=2
|
||||
revision=0
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=yes
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/home/ikm/ext/goldendict-windows/mingw32/lib'
|
Binary file not shown.
Binary file not shown.
|
@ -1,75 +0,0 @@
|
|||
; h:\mingw\3.3.1\bin\dlltool.exe --export-all-symbols --output-def=zlib.def adler32.pic.o compress.pic.o crc32.pic.o gzio.pic.o uncompr.pic.o deflate.pic.o trees.pic.o zutil.pic.o inflate.pic.o infback.pic.o inftrees.pic.o inffast.pic.o zlib-dllversion.o zlib-dll-res.o
|
||||
EXPORTS
|
||||
DllGetVersion @ 1 ;
|
||||
_dist_code @ 2 DATA ;
|
||||
_length_code @ 3 DATA ;
|
||||
_tr_align @ 4 ;
|
||||
_tr_flush_block @ 5 ;
|
||||
_tr_init @ 6 ;
|
||||
_tr_stored_block @ 7 ;
|
||||
_tr_tally @ 8 ;
|
||||
adler32 @ 9 ;
|
||||
adler32_combine @ 10 ;
|
||||
compress @ 11 ;
|
||||
compress2 @ 12 ;
|
||||
compressBound @ 13 ;
|
||||
crc32 @ 14 ;
|
||||
crc32_combine @ 15 ;
|
||||
deflate @ 16 ;
|
||||
deflateBound @ 17 ;
|
||||
deflateCopy @ 18 ;
|
||||
deflateEnd @ 19 ;
|
||||
deflateInit2_ @ 20 ;
|
||||
deflateInit_ @ 21 ;
|
||||
deflateParams @ 22 ;
|
||||
deflatePrime @ 23 ;
|
||||
deflateReset @ 24 ;
|
||||
deflateSetDictionary @ 25 ;
|
||||
deflateSetHeader @ 26 ;
|
||||
deflateTune @ 27 ;
|
||||
deflate_copyright @ 28 DATA ;
|
||||
get_crc_table @ 29 ;
|
||||
gzclearerr @ 30 ;
|
||||
gzclose @ 31 ;
|
||||
gzdirect @ 32 ;
|
||||
gzdopen @ 33 ;
|
||||
gzeof @ 34 ;
|
||||
gzerror @ 35 ;
|
||||
gzflush @ 36 ;
|
||||
gzgetc @ 37 ;
|
||||
gzgets @ 38 ;
|
||||
gzopen @ 39 ;
|
||||
gzprintf @ 40 ;
|
||||
gzputc @ 41 ;
|
||||
gzputs @ 42 ;
|
||||
gzread @ 43 ;
|
||||
gzrewind @ 44 ;
|
||||
gzseek @ 45 ;
|
||||
gzsetparams @ 46 ;
|
||||
gztell @ 47 ;
|
||||
gzungetc @ 48 ;
|
||||
gzwrite @ 49 ;
|
||||
inflate @ 50 ;
|
||||
inflateBack @ 51 ;
|
||||
inflateBackEnd @ 52 ;
|
||||
inflateBackInit_ @ 53 ;
|
||||
inflateCopy @ 54 ;
|
||||
inflateEnd @ 55 ;
|
||||
inflateGetHeader @ 56 ;
|
||||
inflateInit2_ @ 57 ;
|
||||
inflateInit_ @ 58 ;
|
||||
inflatePrime @ 59 ;
|
||||
inflateReset @ 60 ;
|
||||
inflateSetDictionary @ 61 ;
|
||||
inflateSync @ 62 ;
|
||||
inflateSyncPoint @ 63 ;
|
||||
inflate_copyright @ 64 DATA ;
|
||||
inflate_fast @ 65 ;
|
||||
inflate_table @ 66 ;
|
||||
uncompress @ 67 ;
|
||||
zError @ 68 ;
|
||||
z_errmsg @ 69 DATA ;
|
||||
zcalloc @ 70 ;
|
||||
zcfree @ 71 ;
|
||||
zlibCompileFlags @ 72 ;
|
||||
zlibVersion @ 73 ;
|
Binary file not shown.
Loading…
Reference in a new issue