WINSNMP.H
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:21k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /* WinSNMP.h */
  2. /* v1.0 - Sep 13, 1993 */
  3. /* v1.1 - Jun 12, 1994 */
  4. /* v2.0 - Nov  1, 1997 */
  5. /*      - Nov 17, 1997: inc limits.h, tests for ULONG/UINT_MAX */
  6. /*      - Mar 23, 1998: fixed typo in "lpClientData" */
  7. /* Questions/comments to Bob Natale, bnatale@acecomm.com */
  8. #ifndef _INC_WINSNMP     /* Include WinSNMP declarations */
  9. #define  _INC_WINSNMP    /* Just once! */
  10. #ifndef _INC_WINDOWS     /* Include Windows declarations, if not already done */
  11. #include <windows.h>
  12. #define _INC_WINDOWS     /* Just once! */
  13. #endif                   /* _INC_WINDOWS */
  14. #include <limits.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /* WinSNMP API Type Definitions  */
  19. typedef  HANDLE        HSNMP_SESSION,      FAR *LPHSNMP_SESSION;
  20. typedef  HANDLE        HSNMP_ENTITY,       FAR *LPHSNMP_ENTITY;
  21. typedef  HANDLE        HSNMP_CONTEXT,      FAR *LPHSNMP_CONTEXT;
  22. typedef  HANDLE        HSNMP_PDU,          FAR *LPHSNMP_PDU;
  23. typedef  HANDLE        HSNMP_VBL,          FAR *LPHSNMP_VBL;
  24. typedef unsigned char    smiBYTE,          FAR *smiLPBYTE;
  25. /* SNMP-related types */
  26. #if ULONG_MAX == 4294967295U
  27. typedef signed long      smiINT,           FAR *smiLPINT;
  28. typedef smiINT           smiINT32,         FAR *smiLPINT32;
  29. typedef unsigned long    smiUINT32,        FAR *smiLPUINT32;
  30. #elif UINT_MAX == 4294967295U
  31. typedef int              smiINT,           FAR *smiLPINT;
  32. typedef smiINT           smiINT32,         FAR *smiLPINT32;
  33. typedef unsigned int     smiUINT32,        FAR *smiLPUINT32;
  34. #else
  35. #error can not define smiINT and smiUINT
  36. #endif
  37. typedef struct {
  38.      smiUINT32 len;
  39.      smiLPBYTE ptr;}     smiOCTETS,        FAR *smiLPOCTETS;
  40. typedef const smiOCTETS                    FAR *smiLPCOCTETS;
  41. typedef smiOCTETS        smiBITS,          FAR *smiLPBITS;
  42. typedef struct {
  43.      smiUINT32   len;
  44.      smiLPUINT32 ptr;}   smiOID,           FAR *smiLPOID;
  45. typedef const smiOID                       FAR *smiLPCOID;
  46. typedef smiOCTETS        smiIPADDR,        FAR *smiLPIPADDR;
  47. typedef smiUINT32        smiCNTR32,        FAR *smiLPCNTR32;
  48. typedef smiUINT32        smiGAUGE32,       FAR *smiLPGAUGE32;
  49. typedef smiUINT32        smiTIMETICKS,     FAR *smiLPTIMETICKS;
  50. typedef smiOCTETS        smiOPAQUE,        FAR *smiLPOPAQUE;
  51. typedef smiOCTETS        smiNSAPADDR,      FAR *smiLPNSAPADDR;
  52. typedef struct {
  53.      smiUINT32 hipart;
  54.      smiUINT32 lopart;}  smiCNTR64,        FAR *smiLPCNTR64;
  55. /* ASN/BER Base Types */
  56. /* (used in forming SYNTAXes and certain SNMP types/values) */
  57. #define ASN_UNIVERSAL         (0x00)
  58. #define ASN_APPLICATION       (0x40)
  59. #define ASN_CONTEXT           (0x80)
  60. #define ASN_PRIVATE           (0xC0)
  61. #define ASN_PRIMITIVE         (0x00)
  62. #define ASN_CONSTRUCTOR       (0x20)
  63. /* SNMP ObjectSyntax Values */
  64. #define SNMP_SYNTAX_SEQUENCE  (ASN_UNIVERSAL | ASN_CONSTRUCTOR | 0x10)
  65. /* These values are used in the "syntax" member of the smiVALUE structure which follows */
  66. #define SNMP_SYNTAX_INT       (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x02)
  67. #define SNMP_SYNTAX_BITS      (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x03)
  68. #define SNMP_SYNTAX_OCTETS    (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x04)
  69. #define SNMP_SYNTAX_NULL      (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x05)
  70. #define SNMP_SYNTAX_OID       (ASN_UNIVERSAL | ASN_PRIMITIVE | 0x06)
  71. #define SNMP_SYNTAX_INT32     SNMP_SYNTAX_INT
  72. #define SNMP_SYNTAX_IPADDR    (ASN_APPLICATION | ASN_PRIMITIVE | 0x00)
  73. #define SNMP_SYNTAX_CNTR32    (ASN_APPLICATION | ASN_PRIMITIVE | 0x01)
  74. #define SNMP_SYNTAX_GAUGE32   (ASN_APPLICATION | ASN_PRIMITIVE | 0x02)
  75. #define SNMP_SYNTAX_TIMETICKS (ASN_APPLICATION | ASN_PRIMITIVE | 0x03)
  76. #define SNMP_SYNTAX_OPAQUE    (ASN_APPLICATION | ASN_PRIMITIVE | 0x04)
  77. #define SNMP_SYNTAX_NSAPADDR  (ASN_APPLICATION | ASN_PRIMITIVE | 0x05)
  78. #define SNMP_SYNTAX_CNTR64    (ASN_APPLICATION | ASN_PRIMITIVE | 0x06)
  79. #define SNMP_SYNTAX_UINT32    (ASN_APPLICATION | ASN_PRIMITIVE | 0x07)
  80. /* Exception conditions in response PDUs for SNMPv2 */
  81. #define SNMP_SYNTAX_NOSUCHOBJECT   (ASN_CONTEXT | ASN_PRIMITIVE | 0x00)
  82. #define SNMP_SYNTAX_NOSUCHINSTANCE (ASN_CONTEXT | ASN_PRIMITIVE | 0x01)
  83. #define SNMP_SYNTAX_ENDOFMIBVIEW   (ASN_CONTEXT | ASN_PRIMITIVE | 0x02)
  84. typedef struct {              /* smiVALUE portion of VarBind */
  85.      smiUINT32 syntax;        /* Insert SNMP_SYNTAX_<type> */
  86.      union {
  87.      smiINT    sNumber;       /* SNMP_SYNTAX_INT
  88.                                  SNMP_SYNTAX_INT32 */
  89.      smiUINT32 uNumber;       /* SNMP_SYNTAX_UINT32
  90.                                  SNMP_SYNTAX_CNTR32
  91.                                  SNMP_SYNTAX_GAUGE32
  92.                                  SNMP_SYNTAX_TIMETICKS */
  93.      smiCNTR64 hNumber;       /* SNMP_SYNTAX_CNTR64 */
  94.      smiOCTETS string;        /* SNMP_SYNTAX_OCTETS
  95.                                  SNMP_SYNTAX_BITS
  96.                                  SNMP_SYNTAX_OPAQUE
  97.                                  SNMP_SYNTAX_IPADDR
  98.                                  SNMP_SYNTAX_NSAPADDR */
  99.      smiOID    oid;           /* SNMP_SYNTAX_OID */
  100.      smiBYTE   empty;         /* SNMP_SYNTAX_NULL
  101.                                  SNMP_SYNTAX_NOSUCHOBJECT
  102.                                  SNMP_SYNTAX_NOSUCHINSTANCE
  103.                                  SNMP_SYNTAX_ENDOFMIBVIEW */
  104.          }     value;         /* union */
  105.      }         smiVALUE,      FAR *smiLPVALUE;
  106. typedef const  smiVALUE       FAR *smiLPCVALUE;
  107. /* SNMP Limits   */
  108. #define MAXOBJIDSIZE     128  /* Max number of components in an OID */
  109. #define MAXOBJIDSTRSIZE  1408 /* Max len of decoded MAXOBJIDSIZE OID */
  110. /* PDU Type Values */
  111. #define SNMP_PDU_GET          (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x0)
  112. #define SNMP_PDU_GETNEXT      (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x1)
  113. #define SNMP_PDU_RESPONSE     (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x2)
  114. #define SNMP_PDU_SET          (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x3)
  115. /* SNMP_PDU_V1TRAP is obsolete in SNMPv2 */
  116. #define SNMP_PDU_V1TRAP       (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x4)
  117. #define SNMP_PDU_GETBULK      (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x5)
  118. #define SNMP_PDU_INFORM       (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x6)
  119. #define SNMP_PDU_TRAP         (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x7)
  120. /* SNMPv1 Trap Values */
  121. /* (These values might be superfluous wrt WinSNMP applications) */
  122. #define SNMP_TRAP_COLDSTART             0
  123. #define SNMP_TRAP_WARMSTART             1
  124. #define SNMP_TRAP_LINKDOWN              2
  125. #define SNMP_TRAP_LINKUP                3
  126. #define SNMP_TRAP_AUTHFAIL              4
  127. #define SNMP_TRAP_EGPNEIGHBORLOSS       5
  128. #define SNMP_TRAP_ENTERPRISESPECIFIC    6
  129. /* SNMP Error Codes Returned in Error_status Field of PDU */
  130. /* (these are NOT WinSNMP API Error Codes */
  131. /* Error Codes Common to SNMPv1 and SNMPv2 */
  132. #define SNMP_ERROR_NOERROR              0
  133. #define SNMP_ERROR_TOOBIG               1
  134. #define SNMP_ERROR_NOSUCHNAME           2
  135. #define SNMP_ERROR_BADVALUE             3
  136. #define SNMP_ERROR_READONLY             4
  137. #define SNMP_ERROR_GENERR               5
  138. /* Error Codes Added for SNMPv2 */
  139. #define SNMP_ERROR_NOACCESS             6
  140. #define SNMP_ERROR_WRONGTYPE            7
  141. #define SNMP_ERROR_WRONGLENGTH          8
  142. #define SNMP_ERROR_WRONGENCODING        9
  143. #define SNMP_ERROR_WRONGVALUE           10
  144. #define SNMP_ERROR_NOCREATION           11
  145. #define SNMP_ERROR_INCONSISTENTVALUE    12
  146. #define SNMP_ERROR_RESOURCEUNAVAILABLE  13
  147. #define SNMP_ERROR_COMMITFAILED         14
  148. #define SNMP_ERROR_UNDOFAILED           15
  149. #define SNMP_ERROR_AUTHORIZATIONERROR   16
  150. #define SNMP_ERROR_NOTWRITABLE          17
  151. #define SNMP_ERROR_INCONSISTENTNAME     18
  152. /* WinSNMP API Values */
  153. /* Values used to indicate entity/context translation modes */
  154. #define SNMPAPI_TRANSLATED         0
  155. #define SNMPAPI_UNTRANSLATED_V1    1
  156. #define SNMPAPI_UNTRANSLATED_V2    2
  157. /* Values used to indicate "SNMP level" supported by the implementation */
  158. #define SNMPAPI_NO_SUPPORT         0
  159. #define SNMPAPI_V1_SUPPORT         1
  160. #define SNMPAPI_V2_SUPPORT         2
  161. #define SNMPAPI_M2M_SUPPORT        3
  162. /* Values used to indicate retransmit mode in the implementation */
  163. #define SNMPAPI_OFF                0    /* Refuse support */
  164. #define SNMPAPI_ON                 1    /* Request support */
  165. /* WinSNMP API Function Return Codes */
  166. typedef smiUINT32    SNMPAPI_STATUS;    /* Used for function ret values */
  167. #define SNMPAPI_FAILURE            0    /* Generic error code */
  168. #define SNMPAPI_SUCCESS            1    /* Generic success code */
  169. /* WinSNMP API Error Codes (for SnmpGetLastError) */
  170. /* (NOT SNMP Response-PDU error_status codes) */
  171. #define SNMPAPI_ALLOC_ERROR        2    /* Error allocating memory */
  172. #define SNMPAPI_CONTEXT_INVALID    3    /* Invalid context parameter */
  173. #define SNMPAPI_CONTEXT_UNKNOWN    4    /* Unknown context parameter */
  174. #define SNMPAPI_ENTITY_INVALID     5    /* Invalid entity parameter */
  175. #define SNMPAPI_ENTITY_UNKNOWN     6    /* Unknown entity parameter */
  176. #define SNMPAPI_INDEX_INVALID      7    /* Invalid VBL index parameter */
  177. #define SNMPAPI_NOOP               8    /* No operation performed */
  178. #define SNMPAPI_OID_INVALID        9    /* Invalid OID parameter */
  179. #define SNMPAPI_OPERATION_INVALID  10   /* Invalid/unsupported operation */
  180. #define SNMPAPI_OUTPUT_TRUNCATED   11   /* Insufficient output buf len */
  181. #define SNMPAPI_PDU_INVALID        12   /* Invalid PDU parameter */
  182. #define SNMPAPI_SESSION_INVALID    13   /* Invalid session parameter */
  183. #define SNMPAPI_SYNTAX_INVALID     14   /* Invalid syntax in smiVALUE */
  184. #define SNMPAPI_VBL_INVALID        15   /* Invalid VBL parameter */
  185. #define SNMPAPI_MODE_INVALID       16   /* Invalid mode parameter */
  186. #define SNMPAPI_SIZE_INVALID       17   /* Invalid size/length parameter */
  187. #define SNMPAPI_NOT_INITIALIZED    18   /* SnmpStartup failed/not called */
  188. #define SNMPAPI_MESSAGE_INVALID    19   /* Invalid SNMP message format */
  189. #define SNMPAPI_HWND_INVALID       20   /* Invalid Window handle */
  190. #define SNMPAPI_OTHER_ERROR        99   /* For internal/undefined errors */
  191. /* Generic Transport Layer (TL) Errors */
  192. #define SNMPAPI_TL_NOT_INITIALIZED 100  /* TL not initialized */
  193. #define SNMPAPI_TL_NOT_SUPPORTED   101  /* TL does not support protocol */
  194. #define SNMPAPI_TL_NOT_AVAILABLE   102  /* Network subsystem has failed */
  195. #define SNMPAPI_TL_RESOURCE_ERROR  103  /* TL resource error */
  196. #define SNMPAPI_TL_UNDELIVERABLE   104  /* Destination unreachable */
  197. #define SNMPAPI_TL_SRC_INVALID     105  /* Source endpoint invalid */
  198. #define SNMPAPI_TL_INVALID_PARAM   106  /* Input parameter invalid */
  199. #define SNMPAPI_TL_IN_USE          107  /* Source endpoint in use */
  200. #define SNMPAPI_TL_TIMEOUT         108  /* No response before timeout */
  201. #define SNMPAPI_TL_PDU_TOO_BIG     109  /* PDU too big for send/receive */
  202. #define SNMPAPI_TL_OTHER           199  /* Undefined TL error */
  203. /* WinSNMP API Function Prototypes */
  204. #define IN                              /* Documentation only */
  205. #define OUT                             /* Documentation only */
  206. #define SNMPAPI_CALL     WINAPI         /* FAR PASCAL calling conventions */
  207. /* v2.0: Structure for SnmpGetVendorInfo() output */
  208. #define MAXVENDORINFO 32
  209. typedef struct
  210. {
  211. char vendorName[MAXVENDORINFO*2];
  212. char vendorContact[MAXVENDORINFO*2];
  213. char vendorVersionId[MAXVENDORINFO];
  214. char vendorVersionDate[MAXVENDORINFO];
  215. smiUINT32 vendorEnterprise;
  216. } smiVENDORINFO, FAR *smiLPVENDORINFO;
  217. /* v2.0: Callback format for SnmpCreateSession() fCallback parameter */
  218. typedef SNMPAPI_STATUS (CALLBACK *SNMPAPI_CALLBACK)
  219.                         (IN HSNMP_SESSION hSession,
  220.                          IN HWND hWnd,
  221.                          IN UINT wMsg,
  222.                          IN WPARAM wParam,
  223.                          IN LPARAM lParam,
  224.                          IN LPVOID lpClientData);
  225. /* Local Database Functions */
  226. SNMPAPI_STATUS SNMPAPI_CALL   SnmpGetTranslateMode
  227.                               (OUT smiLPUINT32 nTranslateMode);
  228. SNMPAPI_STATUS SNMPAPI_CALL   SnmpSetTranslateMode
  229.                               (IN smiUINT32 nTranslateMode);
  230. SNMPAPI_STATUS SNMPAPI_CALL   SnmpGetRetransmitMode
  231.                               (OUT smiLPUINT32 nRetransmitMode);
  232. SNMPAPI_STATUS SNMPAPI_CALL   SnmpSetRetransmitMode
  233.                               (IN smiUINT32 nRetransmitMode);
  234. SNMPAPI_STATUS SNMPAPI_CALL   SnmpGetTimeout
  235.                               (IN HSNMP_ENTITY hEntity,
  236.                               OUT smiLPTIMETICKS nPolicyTimeout,
  237.                               OUT smiLPTIMETICKS nActualTimeout);
  238. SNMPAPI_STATUS SNMPAPI_CALL   SnmpSetTimeout
  239.                               (IN HSNMP_ENTITY hEntity,
  240.                               IN smiTIMETICKS nPolicyTimeout);
  241. SNMPAPI_STATUS SNMPAPI_CALL   SnmpGetRetry
  242.                               (IN HSNMP_ENTITY hEntity,
  243.                               OUT smiLPUINT32 nPolicyRetry,
  244.                               OUT smiLPUINT32 nActualRetry);
  245. SNMPAPI_STATUS SNMPAPI_CALL   SnmpSetRetry
  246.                               (IN HSNMP_ENTITY hEntity,
  247.                               IN smiUINT32 nPolicyRetry);
  248. /* Following Local Database Functions added in v2.0 */
  249. SNMPAPI_STATUS SNMPAPI_CALL   SnmpGetVendorInfo
  250.                               (OUT smiLPVENDORINFO vendorInfo);
  251. /* Communications Functions */
  252. SNMPAPI_STATUS SNMPAPI_CALL   SnmpStartup
  253.                               (OUT smiLPUINT32 nMajorVersion,
  254.                               OUT smiLPUINT32 nMinorVersion,
  255.                               OUT smiLPUINT32 nLevel,
  256.                               OUT smiLPUINT32 nTranslateMode,
  257.                               OUT smiLPUINT32 nRetransmitMode);
  258. SNMPAPI_STATUS SNMPAPI_CALL   SnmpCleanup
  259.                               (void);
  260. HSNMP_SESSION  SNMPAPI_CALL   SnmpOpen
  261.                               (IN HWND hWnd,
  262.                               IN UINT wMsg);
  263. SNMPAPI_STATUS SNMPAPI_CALL   SnmpClose
  264.                               (IN HSNMP_SESSION session);
  265. SNMPAPI_STATUS SNMPAPI_CALL   SnmpSendMsg
  266.                               (IN HSNMP_SESSION session,
  267.                               IN HSNMP_ENTITY srcEntity,
  268.                               IN HSNMP_ENTITY dstEntity,
  269.                               IN HSNMP_CONTEXT context,
  270.                               IN HSNMP_PDU PDU);
  271. SNMPAPI_STATUS SNMPAPI_CALL   SnmpRecvMsg
  272.                               (IN HSNMP_SESSION session,
  273.                               OUT LPHSNMP_ENTITY srcEntity,
  274.                               OUT LPHSNMP_ENTITY dstEntity,
  275.                               OUT LPHSNMP_CONTEXT  context,
  276.                               OUT LPHSNMP_PDU PDU);
  277. SNMPAPI_STATUS SNMPAPI_CALL   SnmpRegister
  278.                               (IN HSNMP_SESSION session,
  279.                               IN HSNMP_ENTITY srcEntity,
  280.                               IN HSNMP_ENTITY dstEntity,
  281.                               IN HSNMP_CONTEXT context,
  282.                               IN smiLPCOID notification,
  283.                               IN smiUINT32 state);
  284. /* Following Communications Functions added in v2.0 */
  285. HSNMP_SESSION  SNMPAPI_CALL   SnmpCreateSession
  286.                               (IN HWND hWnd,
  287.                               IN UINT wMsg,
  288.                               IN SNMPAPI_CALLBACK fCallBack,
  289.                               IN LPVOID lpClientData);
  290. SNMPAPI_STATUS SNMPAPI_CALL   SnmpListen
  291.                               (IN HSNMP_ENTITY hEntity,
  292.                               IN SNMPAPI_STATUS lStatus);
  293. SNMPAPI_STATUS SNMPAPI_CALL   SnmpCancelMsg
  294.                               (IN HSNMP_SESSION session,
  295.                               IN smiINT32 reqId);
  296. /* Entity/Context Functions */
  297. HSNMP_ENTITY   SNMPAPI_CALL   SnmpStrToEntity
  298.                               (IN HSNMP_SESSION session,
  299.                               IN LPCSTR string);
  300. SNMPAPI_STATUS SNMPAPI_CALL   SnmpEntityToStr
  301.                               (IN HSNMP_ENTITY entity,
  302.                               IN smiUINT32 size,
  303.                               OUT LPSTR string);
  304. SNMPAPI_STATUS SNMPAPI_CALL   SnmpFreeEntity
  305.                               (IN HSNMP_ENTITY entity);
  306. HSNMP_CONTEXT  SNMPAPI_CALL   SnmpStrToContext
  307.                               (IN HSNMP_SESSION session,
  308.                               IN smiLPCOCTETS string);
  309. SNMPAPI_STATUS SNMPAPI_CALL   SnmpContextToStr
  310.                               (IN HSNMP_CONTEXT context,
  311.                               OUT smiLPOCTETS string);
  312. SNMPAPI_STATUS SNMPAPI_CALL   SnmpFreeContext
  313.                               (IN HSNMP_CONTEXT context);
  314. /* Following Entity/Context Functions added in v2.0 */
  315. SNMPAPI_STATUS SNMPAPI_CALL   SnmpSetPort
  316.                               (IN HSNMP_ENTITY hEntity,
  317.                               IN UINT nPort);
  318. /* PDU Functions */
  319. HSNMP_PDU      SNMPAPI_CALL   SnmpCreatePdu
  320.                               (IN HSNMP_SESSION session,
  321.                               IN smiINT PDU_type,
  322.                               IN smiINT32 request_id,
  323.                               IN smiINT error_status,
  324.                               IN smiINT error_index,
  325.                               IN HSNMP_VBL varbindlist);
  326. SNMPAPI_STATUS SNMPAPI_CALL   SnmpGetPduData
  327.                               (IN HSNMP_PDU PDU,
  328.                               OUT smiLPINT PDU_type,
  329.                               OUT smiLPINT32 request_id,
  330.                               OUT smiLPINT error_status,
  331.                               OUT smiLPINT error_index,
  332.                               OUT LPHSNMP_VBL varbindlist);
  333. SNMPAPI_STATUS SNMPAPI_CALL   SnmpSetPduData
  334.                               (IN HSNMP_PDU PDU,
  335.                               IN const smiINT FAR *PDU_type,
  336.                               IN const smiINT32 FAR *request_id,
  337.                               IN const smiINT FAR *non_repeaters,
  338.                               IN const smiINT FAR *max_repetitions,
  339.                               IN const HSNMP_VBL FAR *varbindlist);
  340. HSNMP_PDU      SNMPAPI_CALL   SnmpDuplicatePdu
  341.                               (IN HSNMP_SESSION session,
  342.                               IN HSNMP_PDU PDU);
  343. SNMPAPI_STATUS SNMPAPI_CALL   SnmpFreePdu
  344.                               (IN HSNMP_PDU PDU);
  345. /* Variable-Binding Functions */
  346. HSNMP_VBL      SNMPAPI_CALL   SnmpCreateVbl
  347.                               (IN HSNMP_SESSION session,
  348.                               IN smiLPCOID name,
  349.                               IN smiLPCVALUE value);
  350. HSNMP_VBL      SNMPAPI_CALL   SnmpDuplicateVbl
  351.                               (IN HSNMP_SESSION session,
  352.                               IN HSNMP_VBL vbl);
  353. SNMPAPI_STATUS SNMPAPI_CALL   SnmpFreeVbl
  354.                               (IN HSNMP_VBL vbl);
  355. SNMPAPI_STATUS SNMPAPI_CALL   SnmpCountVbl
  356.                               (IN HSNMP_VBL vbl);
  357. SNMPAPI_STATUS SNMPAPI_CALL   SnmpGetVb
  358.                               (IN HSNMP_VBL vbl,
  359.                               IN smiUINT32 index,
  360.                               OUT smiLPOID name,
  361.                               OUT smiLPVALUE value);
  362. SNMPAPI_STATUS SNMPAPI_CALL   SnmpSetVb
  363.                               (IN HSNMP_VBL vbl,
  364.                               IN smiUINT32 index,
  365.                               IN smiLPCOID name,
  366.                               IN smiLPCVALUE value);
  367. SNMPAPI_STATUS SNMPAPI_CALL   SnmpDeleteVb
  368.                               (IN HSNMP_VBL vbl,
  369.                               IN smiUINT32 index);
  370. /* Utility Functions */
  371. SNMPAPI_STATUS SNMPAPI_CALL   SnmpGetLastError
  372.                               (IN HSNMP_SESSION session);
  373. SNMPAPI_STATUS SNMPAPI_CALL   SnmpStrToOid
  374.                               (IN LPCSTR string,
  375.                               OUT smiLPOID dstOID);
  376. SNMPAPI_STATUS SNMPAPI_CALL   SnmpOidToStr
  377.                               (IN smiLPCOID srcOID,
  378.                               IN smiUINT32 size,
  379.                               OUT LPSTR string);
  380. SNMPAPI_STATUS SNMPAPI_CALL   SnmpOidCopy
  381.                               (IN smiLPCOID srcOID,
  382.                               OUT smiLPOID dstOID);
  383. SNMPAPI_STATUS SNMPAPI_CALL   SnmpOidCompare
  384.                               (IN smiLPCOID xOID,
  385.                               IN smiLPCOID yOID,
  386.                               IN smiUINT32 maxlen,
  387.                               OUT smiLPINT result);
  388. SNMPAPI_STATUS SNMPAPI_CALL   SnmpEncodeMsg
  389.                               (IN HSNMP_SESSION session,
  390.                               IN HSNMP_ENTITY srcEntity,
  391.                               IN HSNMP_ENTITY dstEntity,
  392.                               IN HSNMP_CONTEXT context,
  393.                               IN HSNMP_PDU pdu,
  394.                               OUT smiLPOCTETS msgBufDesc);
  395. SNMPAPI_STATUS SNMPAPI_CALL   SnmpDecodeMsg
  396.                               (IN HSNMP_SESSION session,
  397.                               OUT LPHSNMP_ENTITY srcEntity,
  398.                               OUT LPHSNMP_ENTITY dstEntity,
  399.                               OUT LPHSNMP_CONTEXT context,
  400.                               OUT LPHSNMP_PDU pdu,
  401.                               IN smiLPCOCTETS msgBufDesc);
  402. SNMPAPI_STATUS SNMPAPI_CALL   SnmpFreeDescriptor
  403.                               (IN smiUINT32 syntax,
  404.                               IN smiLPOPAQUE descriptor);
  405. #ifdef __cplusplus
  406. }
  407. #endif
  408. #endif         /* _INC_WINSNMP */