MBB_DEVICE_WAKE_CAPABILITIES - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// mbbcx.h

typedef struct _MBB_DEVICE_WAKE_CAPABILITIES {
  ULONG   Size;
  BOOLEAN RegisterState;
  BOOLEAN SmsReceive;
  BOOLEAN UssdReceive;
  BOOLEAN PacketState;
  BOOLEAN UiccChange;
} MBB_DEVICE_WAKE_CAPABILITIES;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-mbbcx-_mbb_device_wake_capabilities)

MBB_DEVICE_WAKE_CAPABILITIES structure

Description

The MBB_DEVICE_WAKE_CAPABILITIES structure describes a MBBCx net adapter's wake-on-LAN (WoL) capabilities.

Members

Size

The size of this structure, in bytes.

RegisterState

A boolean value indicating if the net adapter can generate wake-up events if its registration state with the mobile broadband service has changed.

SmsReceive

A boolean value indicating if the net adapter can generate wake-up events if it receives a Short Message Service (SMS) message that it must report to the mobile broadband service.

UssdReceive

A boolean value indicating if the net adapter can generate wake-up events if it receives an Unstructured Supplementary Service Data (USSD) message.

PacketState

A boolean value indicating if the net adapter can generate wake-up events if a packet state changes.

UiccChange

A boolean value indicating if the net adapter can generate wake-up events if the SIM card state changes.

Remarks

Call MBB_DEVICE_WAKE_CAPABILITIES_INIT to initialize this structure. An initialized MBB_DEVICE_WAKE_CAPABILITIES structure is passed as an input method to MbbDeviceSetWakeCapabilities.

See also