summaryrefslogtreecommitdiff
path: root/include/my_getopt.h
diff options
context:
space:
mode:
authorram@gw.mysql.r18.ru <>2004-08-31 21:27:58 +0500
committerram@gw.mysql.r18.ru <>2004-08-31 21:27:58 +0500
commitb93a973b1203b969fef15ef8c10d0d494423f9ed (patch)
tree03be22b4525ca6105700a5357899d4e1c249a6dd /include/my_getopt.h
parent86fcffb3230cfe326da144db9e3009e5ab9c85ca (diff)
downloadmariadb-git-b93a973b1203b969fef15ef8c10d0d494423f9ed.tar.gz
Added global my_getopt_error_reporter function pointer which is
used in the handle_options() function (instead of using additional handle_option() parameter). The default value of the my_getopt_error_reporter is default_reporter(). One can set it to other functions if case of need.
Diffstat (limited to 'include/my_getopt.h')
-rw-r--r--include/my_getopt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/my_getopt.h b/include/my_getopt.h
index f5b847f7dda..e602773e181 100644
--- a/include/my_getopt.h
+++ b/include/my_getopt.h
@@ -50,15 +50,15 @@ struct my_option
int app_type; /* To be used by an application */
};
-extern char *disabled_my_option;
-extern my_bool my_getopt_print_errors;
-
typedef my_bool (* my_get_one_option) (int, const struct my_option *, char * );
typedef void (* my_error_reporter) (enum loglevel level, const char *format, ... );
+extern char *disabled_my_option;
+extern my_bool my_getopt_print_errors;
+extern my_error_reporter my_getopt_error_reporter;
+
extern int handle_options (int *argc, char ***argv,
- const struct my_option *longopts, my_get_one_option,
- my_error_reporter );
+ const struct my_option *longopts, my_get_one_option);
extern void my_print_help(const struct my_option *options);
extern void my_print_variables(const struct my_option *options);