// wwan.h
typedef struct _WWAN_SMS_SEND {
WWAN_SMS_FORMAT SmsFormat;
union {
WWAN_SMS_SEND_PDU Pdu;
WWAN_SMS_SEND_CDMA Cdma;
} u;
} WWAN_SMS_SEND, *PWWAN_SMS_SEND;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_SMS_SEND structure represents an SMS text message to send.
SmsFormatThe format of the SMS text message.
uContainer union for the different SMS formats.
u.PduShort message data types to be used depending on the value of SmsFormat as shown in the following table.
| SmsFormat | Member to use |
|---|---|
| WwanSmsFormatPdu | Pdu |
| WwanSmsFormatCdma | Cdma |
u.CdmaShort message data types to be used depending on the value of SmsFormat as shown in the following table.
| SmsFormat | Member to use |
|---|---|
| WwanSmsFormatPdu | Pdu |
| WwanSmsFormatCdma | Cdma |