NET_PHYSICAL_LOCATION_LH struttura (ifdef.h)
La struttura NET_PHYSICAL_LOCATION fornisce NDIS con informazioni sulla posizione fisica di un'interfaccia di rete registrata.
Sintassi
typedef struct _NET_PHYSICAL_LOCATION_LH {
ULONG BusNumber;
ULONG SlotNumber;
ULONG FunctionNumber;
} NET_PHYSICAL_LOCATION_LH, *PNET_PHYSICAL_LOCATION_LH;
Members
BusNumber
Numero del bus della posizione fisica per l'hardware. Se la posizione fisica è sconosciuta, impostare questo membro su NIIF_BUS_NUMBER_UNKNOWN. Altri valori sono riservati per NDIS.
SlotNumber
Numero di slot della posizione fisica per l'hardware. Se la posizione fisica è sconosciuta, impostare questo membro su NIIF_SLOT_NUMBER_UNKNOWN. Altri valori sono riservati per NDIS.
FunctionNumber
Numero di funzione della posizione fisica per l'hardware. Se la posizione fisica è sconosciuta, impostare questo membro su NIIF_FUNCTION_NUMBER_UNKNOWN. Altri valori sono riservati per NDIS.
Commenti
Un provider di interfacce di rete inizializza una struttura NET_IF_INFORMATION per fornire NDIS con informazioni su ogni interfaccia registrata. La struttura NET_PHYSICAL_LOCATION è inclusa nel membro PhysicalLocation della struttura NET_IF_INFORMATION.
NET_PHYSICAL_LOCATION contiene informazioni che rimangono costanti durante la durata dell'interfaccia. Per registrare un'interfaccia, un provider passa un puntatore a una struttura di NET_IF_INFORMATION inizializzata dal provider alla funzione NdisIfRegisterInterface .
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Supportato in NDIS 6.0 e versioni successive. |
Intestazione | ifdef.h (include Ntddndis.h) |