Source code of Windows XP (NT5)
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.

72 lines
1.8 KiB

  1. /*++
  2. Copyright (c) 1992-1997 Microsoft Corporation
  3. Module Name:
  4. sysoid.c
  5. Abstract:
  6. Contains enterprise oid routine.
  7. SnmpSvcGetEnterpriseOid
  8. Environment:
  9. User Mode - Win32
  10. Revision History:
  11. --*/
  12. ///////////////////////////////////////////////////////////////////////////////
  13. // //
  14. // Include files //
  15. // //
  16. ///////////////////////////////////////////////////////////////////////////////
  17. #include <snmp.h>
  18. #include <snmputil.h>
  19. ///////////////////////////////////////////////////////////////////////////////
  20. // //
  21. // Global Variables //
  22. // //
  23. ///////////////////////////////////////////////////////////////////////////////
  24. extern AsnObjectIdentifier * g_pEnterpriseOid;
  25. ///////////////////////////////////////////////////////////////////////////////
  26. // //
  27. // Public Procedures //
  28. // //
  29. ///////////////////////////////////////////////////////////////////////////////
  30. AsnObjectIdentifier *
  31. SNMP_FUNC_TYPE
  32. SnmpSvcGetEnterpriseOID(
  33. )
  34. /*++
  35. Routine Description:
  36. Retrieves enterprise oid for SNMP process.
  37. Arguments:
  38. None.
  39. Return Values:
  40. Returns pointer to enterprise oid.
  41. --*/
  42. {
  43. // return system oid
  44. return g_pEnterpriseOid;
  45. }