Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.7 KiB

  1. ; WSNMP32.def
  2. ; v1.0 13-Sep-93
  3. ; v1.1 12-Jun-94
  4. ; v2.0 01-Nov-97
  5. ;
  6. ; Questions/comments to Bob Natale, bnatale@acecomm.com
  7. ;
  8. ; PROTOTYPE for WinSNMP Implementors
  9. ; System: Microsoft Windows NT and Win95
  10. ; Summary: Module definition file for WSNMP32 DLL.
  11. ;
  12. LIBRARY wsnmp32
  13. ; All defined WinSNMP functions must be exported.
  14. ; WinSNMP will use the range 100-999 (to allow for future growth).
  15. ; Only standard WinSNMP functions may be exported via this MDF.
  16. EXPORTS
  17. ; These ordinals MUST be used by all WinSNMP implementations:
  18. ; x00 - x19 = functions defined in WinSNMP v1.1a.
  19. ; 999 = SnmpGetLastError for historical reasons,
  20. ; x20 - x29 = functions (5) added in WinSNMP v2.0.
  21. ;
  22. ; Local database functions
  23. SnmpGetTranslateMode @100
  24. SnmpSetTranslateMode @101
  25. SnmpGetRetransmitMode @102
  26. SnmpSetRetransmitMode @103
  27. SnmpGetTimeout @104
  28. SnmpSetTimeout @105
  29. SnmpGetRetry @106
  30. SnmpSetRetry @107
  31. SnmpGetVendorInfo @120
  32. ; Communications Functions
  33. SnmpStartup @200
  34. SnmpCleanup @201
  35. SnmpOpen @202
  36. SnmpClose @203
  37. SnmpSendMsg @204
  38. SnmpRecvMsg @205
  39. SnmpRegister @206
  40. SnmpCreateSession @220
  41. SnmpListen @221
  42. SnmpCancelMsg @222
  43. ; Entity Functions
  44. SnmpStrToEntity @300
  45. SnmpEntityToStr @301
  46. SnmpFreeEntity @302
  47. SnmpSetPort @320
  48. ; Context Functions
  49. SnmpStrToContext @400
  50. SnmpContextToStr @401
  51. SnmpFreeContext @402
  52. ; Pdu Functions
  53. SnmpCreatePdu @500
  54. SnmpGetPduData @501
  55. SnmpSetPduData @502
  56. SnmpDuplicatePdu @503
  57. SnmpFreePdu @504
  58. ; Vbl Functions
  59. SnmpCreateVbl @600
  60. SnmpDuplicateVbl @601
  61. SnmpFreeVbl @602
  62. SnmpCountVbl @603
  63. SnmpGetVb @604
  64. SnmpSetVb @605
  65. SnmpDeleteVb @606
  66. ; Utility Functions
  67. SnmpFreeDescriptor @900
  68. SnmpEncodeMsg @901
  69. SnmpDecodeMsg @902
  70. SnmpStrToOid @903
  71. SnmpOidToStr @904
  72. SnmpOidCopy @905
  73. SnmpOidCompare @906
  74. SnmpGetLastError @999
  75. ; End of required WinSNMP ordinals.