1 #ifndef __RECONFIGURE_H__ 2 #define __RECONFIGURE_H__ 3 4 #include <stdio.h> 5 6 #define CONFIG_OPT_STARTUP 0x01 7 #define CONFIG_OPT_CMDLINE 0x02 8 9 extern const char *smbnetfs_option_list; 10 11 void reconfigure_set_default_login_and_configdir(void); 12 int reconfigure_analyse_cmdline_option(const char *option, char *value); 13 int reconfigure_read_config(int flags); 14 15 #endif /* __RECONFIGURE_H__ */