DOT11_PHY_STATE_PARAMETERS (Compact 2013)
3/26/2014
This structure is used by a miniport driver that makes the NDIS_STATUS_DOT11_PHY_STATE_CHANGED indication when the hardware or software power state of a PHY changes on the 802.11 station.
Syntax
typedef struct DOT11_PHY_STATE_PARAMETERS {
NDIS_OBJECT_HEADER Header;
ULONG uPhyId;
BOOLEAN bHardwarePhyState;
BOOLEAN bSoftwarePhyState;
} DOT11_PHY_STATE_PARAMETERS, *PDOT11_PHY_STATE_PARAMETERS;
Members
Header
The type, revision, and size of the DOT11_PHY_STATE_PARAMETERS structure. This member is formatted as an NDIS_OBJECT_HEADER structure.The miniport driver must set the members of Header to the following values:
Type
This member must be set to NDIS_OBJECT_TYPE_DEFAULT
Revision
DOT11__STATE_PARAMETERS_REVISION_1
Size
This member must be set to sizeof(DOT11_PHY_STATE_PARAMETERS)
uPhyId
The PHY identifier (ID) of the PHY whose state has changed.The PHY ID is an index into the table of supported PHYs that are specified by the Native 802.11 Operational msDot11SupportedPhyTypes MIB object. For more information about PHY IDs and the msDot11SupportedPhyTypes MIB object, see OID_DOT11_SUPPORTED_PHY_TYPES.
If the uPhyId member is set to DOT11_PHY_ID_ANY, the NDIS_STATUS_DOT11_PHY_STATE_CHANGED indication applies to all PHYs in the msDot11SupportedPhyTypes MIB object.
bHardwarePhyState
A Boolean value that specifies the hardware power state of the PHY that is referenced by uPhyId. If TRUE, the hardware power state is enabled. If FALSE, the hardware power state is disabled.For more information about the PHY’s hardware power state, see OID_DOT11_HARDWARE_PHY_STATE.
bSoftwarePhyState
A Boolean value that specifies the software power state of the PHY that is referenced by uPhyId. If TRUE, the software power state is enabled. If FALSE, the software power state is disabled.For more information about the PHY’s software power state, see OID_DOT11_NIC_POWER_STATE.
Requirements
Header |
windot11.h |
See Also
Reference
Native 802.11 Data Types
NDIS_STATUS_DOT11_PHY_STATE_CHANGED
NDIS_OBJECT_HEADER
OID_DOT11_SUPPORTED_PHY_TYPES
OID_DOT11_HARDWARE_PHY_STATE
OID_DOT11_NIC_POWER_STATE
Native 802.11 Wireless LAN Reference