1
/* Copyright (C) 2002-2004 MySQL AB
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
30
#define GET_STR_ALLOC 10
31
#define GET_DISABLED 11
36
#define GET_ASK_ADDR 128
37
#define GET_TYPE_MASK 127
41
enum get_opt_arg_type { NO_ARG, OPT_ARG, REQUIRED_ARG };
47
const char *name; /* Name of the option */
48
int id; /* unique id or short option */
49
const char *comment; /* option comment, for autom. --help */
50
uchar **value; /* The variable value */
51
uchar **u_max_value; /* The user def. max variable value */
52
struct st_typelib *typelib; /* Pointer to possible values */
54
enum get_opt_arg_type arg_type;
55
longlong def_value; /* Default value */
56
longlong min_value; /* Min allowed value */
57
longlong max_value; /* Max allowed value */
58
longlong sub_size; /* Subtract this from given value */
59
long block_size; /* Value should be a mult. of this */
60
void *app_type; /* To be used by an application */
63
typedef my_bool (* my_get_one_option) (int, const struct my_option *, char * );
64
typedef void (* my_error_reporter) (enum loglevel level, const char *format, ... );
66
extern char *disabled_my_option;
67
extern my_bool my_getopt_print_errors;
68
extern my_bool my_getopt_skip_unknown;
69
extern my_error_reporter my_getopt_error_reporter;
71
extern int handle_options (int *argc, char ***argv,
72
const struct my_option *longopts, my_get_one_option);
73
extern void my_cleanup_options(const struct my_option *options);
74
extern void my_print_help(const struct my_option *options);
75
extern void my_print_variables(const struct my_option *options);
76
extern void my_getopt_register_get_addr(uchar ** (*func_addr)(const char *, uint,
77
const struct my_option *));
79
ulonglong getopt_ull_limit_value(ulonglong num, const struct my_option *optp,
81
longlong getopt_ll_limit_value(longlong, const struct my_option *,
83
my_bool getopt_compare_strings(const char *s, const char *t, uint length);
87
#endif /* _my_getopt_h */