smiVENDORINFO structure (winsnmp.h)

[SNMP is available for use in the operating systems specified in the Requirements section. It may be altered or unavailable in subsequent versions. Instead, use Windows Remote Management, which is the Microsoft implementation of WS-Man.]

The smiVENDORINFO structure contains information about the Microsoft WinSNMP implementation. A WinSNMP application can call the SnmpGetVendorInfo function to retrieve this structure. The smiVENDORINFO structure is an element of the WinSNMP API, version 2.0.

Syntax

typedef struct {
  char      *vendorName[MAXVENDORINFO  2];
  char      *vendorContact[MAXVENDORINFO  2];
  char      vendorVersionId[MAXVENDORINFO];
  char      vendorVersionDate[MAXVENDORINFO];
  smiUINT32 vendorEnterprise;
} smiVENDORINFO, *smiLPVENDORINFO;

Members

vendorName[MAXVENDORINFO * 2]

Contains the null-terminated string "Microsoft Corporation". The string is suitable for display to end users.

vendorContact[MAXVENDORINFO * 2]

Specifies a null-terminated character string that indicates how Microsoft can be contacted for WinSNMP-related information. For example, this member can contain a postal address, a telephone number or a fax number, a URL, or an e-mail address such as "snmpinfo@microsoft.com". The string is suitable for display.

vendorVersionId[MAXVENDORINFO]

Specifies a null-terminated character string that identifies the version number of the WinSNMP API the Microsoft WinSNMP implementation is currently supporting. The string is suitable for display.

vendorVersionDate[MAXVENDORINFO]

Specifies a null-terminated character string that indicates the release date of the version of the WinSNMP API the Microsoft WinSNMP implementation is currently supporting. The string is suitable for display.

vendorEnterprise

Contains the value 311, Microsoft's enterprise number (permanent address) assigned by the Internet Assigned Numbers Authority (IANA).

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header winsnmp.h

See also

SnmpGetVendorInfo

WinSNMP API Overview

WinSNMP Structures