• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/confuse-2.7/src/

Lines Matching refs:DLLIMPORT

55 #  define DLLIMPORT __declspec (dllexport)
57 # define DLLIMPORT __declspec (dllimport)
60 # define DLLIMPORT
538 DLLIMPORT cfg_t * __export cfg_init(cfg_opt_t *opts, cfg_flag_t flags);
553 DLLIMPORT int __export cfg_parse(cfg_t *cfg, const char *filename);
565 DLLIMPORT int __export cfg_parse_fp(cfg_t *cfg, FILE *fp);
575 DLLIMPORT int __export cfg_parse_buf(cfg_t *cfg, const char *buf);
582 DLLIMPORT void __export cfg_free_value(cfg_opt_t *opt);
587 DLLIMPORT void __export cfg_free(cfg_t *cfg);
592 DLLIMPORT cfg_errfunc_t __export cfg_set_error_function(cfg_t *cfg,
598 DLLIMPORT void __export cfg_error(cfg_t *cfg, const char *fmt, ...);
605 DLLIMPORT signed long __export cfg_opt_getnint(cfg_opt_t *opt, unsigned int index);
613 DLLIMPORT long int __export cfg_getnint(cfg_t *cfg, const char *name,
625 DLLIMPORT long int __export cfg_getint(cfg_t *cfg, const char *name);
632 DLLIMPORT double __export cfg_opt_getnfloat(cfg_opt_t *opt, unsigned int index);
640 DLLIMPORT double __export cfg_getnfloat(cfg_t *cfg, const char *name,
651 DLLIMPORT double __export cfg_getfloat(cfg_t *cfg, const char *name);
658 DLLIMPORT char * __export cfg_opt_getnstr(cfg_opt_t *opt, unsigned int index);
666 DLLIMPORT char * __export cfg_getnstr(cfg_t *cfg, const char *name,
677 DLLIMPORT char * __export cfg_getstr(cfg_t *cfg, const char *name);
684 DLLIMPORT cfg_bool_t __export cfg_opt_getnbool(cfg_opt_t *opt, unsigned int index);
693 DLLIMPORT cfg_bool_t __export cfg_getnbool(cfg_t *cfg, const char *name,
704 DLLIMPORT cfg_bool_t __export cfg_getbool(cfg_t *cfg, const char *name);
707 DLLIMPORT void * __export cfg_opt_getnptr(cfg_opt_t *opt, unsigned int index);
708 DLLIMPORT void * __export cfg_getnptr(cfg_t *cfg, const char *name, unsigned int indx);
718 DLLIMPORT void * __export cfg_getptr(cfg_t *cfg, const char *name);
726 DLLIMPORT cfg_t * __export cfg_opt_getnsec(cfg_opt_t *opt, unsigned int index);
736 DLLIMPORT cfg_t * __export cfg_getnsec(cfg_t *cfg, const char *name,
746 DLLIMPORT cfg_t * __export cfg_opt_gettsec(cfg_opt_t *opt, const char *title);
757 DLLIMPORT cfg_t * __export cfg_gettsec(cfg_t *cfg, const char *name,
770 DLLIMPORT cfg_t * __export cfg_getsec(cfg_t *cfg, const char *name);
777 DLLIMPORT unsigned int __export cfg_opt_size(cfg_opt_t *opt);
791 DLLIMPORT unsigned int __export cfg_size(cfg_t *cfg, const char *name);
799 DLLIMPORT const char * __export cfg_title(cfg_t *cfg);
807 DLLIMPORT const char * __export cfg_name(cfg_t *cfg);
815 DLLIMPORT const char * __export cfg_opt_name(cfg_opt_t *opt);
822 DLLIMPORT int __export cfg_include(cfg_t *cfg, cfg_opt_t *opt, int argc,
831 DLLIMPORT char * __export cfg_tilde_expand(const char *filename);
840 DLLIMPORT int __export cfg_parse_boolean(const char *s);
850 DLLIMPORT cfg_opt_t * __export cfg_getopt(cfg_t *cfg, const char *name);
860 DLLIMPORT cfg_value_t *cfg_setopt(cfg_t *cfg, cfg_opt_t *opt, char *value);
870 DLLIMPORT void __export cfg_opt_setnint(cfg_opt_t *opt,
880 DLLIMPORT void __export cfg_setint(cfg_t *cfg, const char *name,
892 DLLIMPORT void __export cfg_setnint(cfg_t *cfg, const char *name,
903 DLLIMPORT void __export cfg_opt_setnfloat(cfg_opt_t *opt,
913 DLLIMPORT void __export cfg_setfloat(cfg_t *cfg, const char *name,
925 DLLIMPORT void __export cfg_setnfloat(cfg_t *cfg, const char *name,
936 DLLIMPORT void __export cfg_opt_setnbool(cfg_opt_t *opt,
946 DLLIMPORT void __export cfg_setbool(cfg_t *cfg, const char *name,
958 DLLIMPORT void __export cfg_setnbool(cfg_t *cfg, const char *name,
970 DLLIMPORT void __export cfg_opt_setnstr(cfg_opt_t *opt,
981 DLLIMPORT void __export cfg_setstr(cfg_t *cfg, const char *name,
994 DLLIMPORT void __export cfg_setnstr(cfg_t *cfg, const char *name,
1007 DLLIMPORT void __export cfg_setlist(cfg_t *cfg, const char *name,
1010 DLLIMPORT int __export cfg_numopts(cfg_opt_t *opts);
1022 DLLIMPORT void __export cfg_addlist(cfg_t *cfg, const char *name,
1037 DLLIMPORT void __export cfg_opt_nprint_var(cfg_opt_t *opt, unsigned int index,
1044 DLLIMPORT void __export cfg_opt_print_indent(cfg_opt_t *opt, FILE *fp, int indent);
1056 DLLIMPORT void __export cfg_opt_print(cfg_opt_t *opt, FILE *fp);
1062 DLLIMPORT void __export cfg_print_indent(cfg_t *cfg, FILE *fp, int indent);
1077 DLLIMPORT void __export cfg_print(cfg_t *cfg, FILE *fp);
1086 DLLIMPORT cfg_print_func_t __export cfg_opt_set_print_func(cfg_opt_t *opt,
1097 DLLIMPORT cfg_print_func_t __export cfg_set_print_func(cfg_t *cfg, const char *name,
1108 DLLIMPORT cfg_validate_callback_t __export cfg_set_validate_func(cfg_t *cfg,