2.2.18 FW_INTERFACE_LUIDS
This structure is used to contain locally unique identifier (LUID) values that uniquely represent single network adapters (NICs) within a specific computer.
-
typedef struct _tag_FW_INTERFACE_LUIDS { [range(0, 1000)] unsigned long dwNumLUIDs; [size_is(dwNumLUIDs)] GUID* pLUIDs; } FW_INTERFACE_LUIDS, *PFW_INTERFACE_LUIDS;
dwNumLUIDs: This field specifies the number of interface LUIDs that the structure contains.
pLUIDs: A pointer to an array of GUID elements. The number of elements is given by dwNumLUIDs. The GUID data type is specified in [MS-DTYP].