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