// wwan.h
typedef enum _WWAN_DEVICE_SERVICE_SESSION_STATE {
WwanDeviceServiceSessionOpen,
WwanDeviceServiceSessionClosed
} WWAN_DEVICE_SERVICE_SESSION_STATE, *PWWAN_DEVICE_SERVICE_SESSION_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_DEVICE_SERVICE_SESSION_STATE enumeration specifies the state of device service session. It can be used in a set operation to set the state of a session or can be used in an indication to report the state of a session.
WwanDeviceServiceSessionOpenThe device service session is closed or should be closed.
WwanDeviceServiceSessionClosedThe device service session is open or should be opened.
The WWAN_DEVICE_SERVICE_SESSION structure uses the WWAN_DEVICE_SERVICE_SESSION_STATE enumeration to set or report the state of a session.