MIB_IFNUMBER structure (ifmib.h)

The MIB_IFNUMBER structure stores the number of interfaces on a particular computer.

Syntax

typedef struct _MIB_IFNUMBER {
  DWORD dwValue;
} MIB_IFNUMBER, *PMIB_IFNUMBER;

Members

dwValue

The number of interfaces on the computer.

Remarks

The MIB_IFNUMBER structure is not currently used. The MIB_IFTABLE and MIB_IF_TABLE2 structures contain a dwNumEntries member that can be used instead of the MIB_IFNUMBER structure.

On the Microsoft Windows Software Development Kit (SDK) released for Windows Vista and later, the organization of header files has changed and the MIB_IFNUMBER structure is defined in the Ifmib.h header file not in the Iprtrmib.h header file. Note that the Ifmib.h header file is automatically included in Ipmib.h header file. This file is automatically included in the Iprtrmib.h header file which is automatically included in the Iphlpapi.h header file. The Ifmib.h header file should never be used directly.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header ifmib.h (include Iphlpapi.h)

See also

MIB_IFTABLE

MIB_IF_TABLE2