// ntddrilapitypes.h
enum RILSMSFORMAT {
RIL_SMSFORMAT_NONE = 0,
RIL_SMSFORMAT_3GPP = 0x1,
RIL_SMSFORMAT_3GPP2 = 0x2,
RIL_SMSFORMAT_MAX = RIL_SMSFORMAT_3GPP2
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef enum _RILSMSFORMAT {
RIL_SMSFORMAT_3GPP,
RIL_SMSFORMAT_3GPP2,
RIL_SMSFORMAT_MAX
} RILSMSFORMAT;
View the official Windows Driver Kit DDI referenceNo description available.
Warning The Cellular COM API is deprecated in Windows 10. This content is provided to support maintenance of OEM and mobile operator created Windows Phone 8.1 applications.
The RILSMSFORMAT enumeration has the following values.
RIL_SMSFORMAT_NONERIL_SMSFORMAT_3GPPRIL_SMSFORMAT_3GPP2RIL_SMSFORMAT_MAXenum RILSMSFORMAT {
RIL_SMSFORMAT_NONE = 0,
RIL_SMSFORMAT_3GPP = 0x1,
RIL_SMSFORMAT_3GPP2 = 0x2,
RIL_SMSFORMAT_MAX = RIL_SMSFORMAT_3GPP2
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
RIL_SMSFORMAT_NONERIL_SMSFORMAT_3GPPRIL_SMSFORMAT_3GPP2RIL_SMSFORMAT_MAXtypedef enum _RILSMSFORMAT {
RIL_SMSFORMAT_3GPP,
RIL_SMSFORMAT_3GPP2,
RIL_SMSFORMAT_MAX
} RILSMSFORMAT;