mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
initial import of Windows port of IM.
This commit is contained in:
@ -28,23 +28,32 @@
|
||||
|
||||
struct Options
|
||||
{
|
||||
#ifdef __WIN__
|
||||
static char install_as_service;
|
||||
static char remove_service;
|
||||
#else
|
||||
static char run_as_service; /* handle_options doesn't support bool */
|
||||
static const char *user;
|
||||
#endif
|
||||
static const char *log_file_name;
|
||||
static const char *pid_file_name;
|
||||
static const char *socket_file_name;
|
||||
static const char *password_file_name;
|
||||
static const char *default_mysqld_path;
|
||||
static const char *user;
|
||||
/* the option which should be passed to process_default_option_files */
|
||||
static const char *first_option;
|
||||
static uint monitoring_interval;
|
||||
static uint port_number;
|
||||
static const char *bind_address;
|
||||
static const char *config_file;
|
||||
|
||||
static char **saved_argv;
|
||||
|
||||
static int load(int argc, char **argv);
|
||||
int load(int argc, char **argv);
|
||||
void cleanup();
|
||||
#ifdef __WIN__
|
||||
void setup_windows_defaults(const char *progname);
|
||||
#endif
|
||||
};
|
||||
|
||||
#endif // INCLUDES_MYSQL_INSTANCE_MANAGER_OPTIONS_H
|
||||
|
Reference in New Issue
Block a user