WWAN_SMS_SEND structure (wwan.h)

The WWAN_SMS_SEND structure represents an SMS text message to send.

Syntax

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;

Members

SmsFormat

The format of the SMS text message.

u

Container union for the different SMS formats.

u.Pdu

Short 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.Cdma

Short 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

Requirements

Requirement Value
Minimum supported client Available in Windows 7 and later versions of Windows.
Header wwan.h (include Wwan.h)

See also

NDIS_WWAN_SMS_SEND

WWAN_SMS_SEND_CDMA

WWAN_SMS_SEND_PDU