// wwan.h
typedef enum _WWAN_DEVICE_SERVICE_SESSION_CAPABILITY {
WwanDeviceServiceSessionNotSupported,
WwanDeviceServiceSessionWriteSupported,
WwanDeviceServiceSessionReadSupported
} WWAN_DEVICE_SERVICE_SESSION_CAPABILITY, *PWWAN_DEVICE_SERVICE_SESSION_CAPABILITY;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_DEVICE_SERVICE_SESSION_CAPABILITY enumeration lists the different device service session operations that are supported by the device service.
WwanDeviceServiceSessionNotSupportedThe device service does not support device service sessions.
WwanDeviceServiceSessionWriteSupportedThe device service supports write operations from Windows to the miniport driver.
WwanDeviceServiceSessionReadSupportedThe device service supports read indication notifications on a session for data read from the device.