ATM_VPIVCI structure
Note NDIS 5. x has been deprecated and is superseded by NDIS 6. x. For new NDIS driver development, see Network Drivers Starting with Windows Vista. For information about porting NDIS 5. x drivers to NDIS 6. x, see Porting NDIS 5.x Drivers to NDIS 6.0.
The ATM_VPIVCI structure specifies the VPI and VCI values for a VC.
Syntax
typedef struct _ATM_VPIVCI {
ULONG Vpi;
ULONG Vci;
} ATM_VPIVCI, *PATM_VPIVCI;
Members
Vpi
The Virtual Path Identifier of a virtual connection (VC).Vci
The Virtual Channel Identifier of a VC.
Remarks
ATM_VPIVCI is a member of the following ATM structures:
-
As a member of this structure, ATM_VPIVCI identifies the VC that a connection-oriented miniport driver must activate or reserve resources for.
-
As a member of this structure, ATM_VPIVCI identifies the permanent VC (PVC) that a connection-oriented client is requesting a call manager or MCM driver to add to its list of configured PVCs.
-
As a member of this structure, ATM_VPIVCI identifies the permanent VC (PVC) that a connection-oriented client is requesting a call manager or MCM driver to delete from its list of configured PVCs.
Requirements
Header |
Atm.h (include Atm.h) |
See also