auto_nlist.h
上传用户:cxs890
上传日期:2021-05-22
资源大小:347k
文件大小:0k
源码类别:

SNMP编程

开发平台:

C/C++

  1. /*
  2.  * auto_nlist.h
  3.  */
  4. #ifndef _AUTO_NLIST_H
  5. #define _AUTO_NLIST_H
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. #ifdef CAN_USE_NLIST
  10. int auto_nlist (const char *, char *, int);
  11. long auto_nlist_value (const char *);
  12. int KNLookup (struct nlist *, int, char *, int);
  13. #else
  14. # define auto_nlist(x,y,z)
  15. #endif
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif