/
usr
/
include
/
mysql
/
/usr/include/mysql
mkdir
upload
Name
Size
Mode
Actions
mysql/
-
0755
rm
big_endian.h
4931
0644
edit
dl
rm
byte_order_generic.h
5620
0644
edit
dl
rm
byte_order_generic_x86.h
4710
0644
edit
dl
rm
byte_order_generic_x86_64.h
4468
0644
edit
dl
rm
decimal.h
5617
0644
edit
dl
rm
errmsg.h
4721
0644
edit
dl
rm
keycache.h
7502
0644
edit
dl
rm
little_endian.h
4115
0644
edit
dl
rm
mysql.h
29833
0644
edit
dl
rm
mysqld_ername.h
95816
0644
edit
dl
rm
mysqld_error.h
34839
0644
edit
dl
rm
mysql_com.h
24418
0644
edit
dl
rm
mysql_com_server.h
1737
0644
edit
dl
rm
mysql_embed.h
1609
0644
edit
dl
rm
mysql_time.h
2856
0644
edit
dl
rm
mysql_version.h
900
0644
edit
dl
rm
my_alloc.h
2628
0644
edit
dl
rm
my_attribute.h
2512
0644
edit
dl
rm
my_byteorder.h
2683
0644
edit
dl
rm
my_compiler.h
4940
0644
edit
dl
rm
my_config.h
17282
0644
edit
dl
rm
my_dbug.h
8908
0644
edit
dl
rm
my_dir.h
3997
0644
edit
dl
rm
my_getopt.h
6551
0644
edit
dl
rm
my_global.h
33805
0644
edit
dl
rm
my_list.h
2210
0644
edit
dl
rm
my_net.h
2489
0644
edit
dl
rm
my_pthread.h
31745
0644
edit
dl
rm
my_sys.h
41724
0644
edit
dl
rm
my_xml.h
3245
0644
edit
dl
rm
m_ctype.h
33915
0644
edit
dl
rm
m_string.h
9964
0644
edit
dl
rm
plugin.h
24625
0644
edit
dl
rm
plugin_audit.h
4564
0644
edit
dl
rm
plugin_ftparser.h
8013
0644
edit
dl
rm
plugin_validate_password.h
2000
0644
edit
dl
rm
sql_common.h
5403
0644
edit
dl
rm
sql_state.h
13331
0644
edit
dl
rm
sslopt-case.h
2075
0644
edit
dl
rm
sslopt-longopts.h
3090
0644
edit
dl
rm
sslopt-vars.h
1912
0644
edit
dl
rm
typelib.h
2986
0644
edit
dl
rm
Edit:
/usr/include/mysql/typelib.h
(2986B)
/* Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is also distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have included with MySQL. Without limiting anything contained in the foregoing, this file, which is part of C Driver for MySQL (Connector/C), is also subject to the Universal FOSS Exception, version 1.0, a copy of which can be found at http://oss.oracle.com/licenses/universal-foss-exception. 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 General Public License, version 2.0, for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #ifndef _typelib_h #define _typelib_h #include "my_alloc.h" typedef struct st_typelib { /* Different types saved here */ unsigned int count; /* How many types */ const char *name; /* Name of typelib */ const char **type_names; unsigned int *type_lengths; } TYPELIB; extern my_ulonglong find_typeset(char *x, TYPELIB *typelib,int *error_position); extern int find_type_or_exit(const char *x, TYPELIB *typelib, const char *option); #define FIND_TYPE_BASIC 0 /** makes @c find_type() require the whole name, no prefix */ #define FIND_TYPE_NO_PREFIX (1 << 0) /** always implicitely on, so unused, but old code may pass it */ #define FIND_TYPE_NO_OVERWRITE (1 << 1) /** makes @c find_type() accept a number */ #define FIND_TYPE_ALLOW_NUMBER (1 << 2) /** makes @c find_type() treat ',' as terminator */ #define FIND_TYPE_COMMA_TERM (1 << 3) extern int find_type(const char *x, const TYPELIB *typelib, unsigned int flags); extern void make_type(char *to,unsigned int nr,TYPELIB *typelib); extern const char *get_type(TYPELIB *typelib,unsigned int nr); extern TYPELIB *copy_typelib(MEM_ROOT *root, TYPELIB *from); extern TYPELIB sql_protocol_typelib; my_ulonglong find_set_from_flags(const TYPELIB *lib, unsigned int default_name, my_ulonglong cur_set, my_ulonglong default_set, const char *str, unsigned int length, char **err_pos, unsigned int *err_len); #endif /* _typelib_h */
Save
cmd:
run