mib_modules.h
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:0k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. #ifndef MIB_MODULES_H
  2. #define MIB_MODULES_H
  3. #ifdef __cplusplus
  4. extern          "C" {
  5. #endif
  6. #define DO_INITIALIZE   1
  7. #define DONT_INITIALIZE 0
  8. struct module_init_list {
  9.     char           *module_name;
  10.     struct module_init_list *next;
  11. };
  12. void            add_to_init_list(char *module_list);
  13. int             should_init(const char *module_name);
  14. void            init_mib_modules(void);
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif