GetInterfaceInfo function iphlpapi

int GetInterfaceInfo(
  1. Pointer<IP_INTERFACE_INFO> pIfTable,
  2. Pointer<Uint32> dwOutBufLen
)

The GetInterfaceInfo function obtains the list of the network interface adapters with IPv4 enabled on the local system.

DWORD GetInterfaceInfo(
  PIP_INTERFACE_INFO pIfTable,
  PULONG             dwOutBufLen
);

Implementation

int GetInterfaceInfo(
        Pointer<IP_INTERFACE_INFO> pIfTable, Pointer<Uint32> dwOutBufLen) =>
    _GetInterfaceInfo(pIfTable, dwOutBufLen);