// ntddrilapitypes.h
enum RILADDRESSPARAMMASK {
RIL_PARAM_A_NONE = 0x00000000,
RIL_PARAM_A_TYPE = 0x00000001,
RIL_PARAM_A_NUMPLAN = 0x00000002,
RIL_PARAM_A_ADDRESS = 0x00000004,
RIL_PARAM_A_ALL = 0x00000007
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef enum _RILADDRESSPARAMMASK {
RIL_PARAM_A_TYPE,
RIL_PARAM_A_NUMPLAN,
RIL_PARAM_A_ADDRESS,
RIL_PARAM_A_ALL
} RILADDRESSPARAMMASK;
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.
This enumeration describes the RILADDRESSPARAMMASK enumeration.
RIL_PARAM_A_NONERIL_PARAM_A_TYPERIL_PARAM_A_NUMPLANRIL_PARAM_A_ADDRESSRIL_PARAM_A_ALLenum RILADDRESSPARAMMASK {
RIL_PARAM_A_NONE = 0x00000000,
RIL_PARAM_A_TYPE = 0x00000001,
RIL_PARAM_A_NUMPLAN = 0x00000002,
RIL_PARAM_A_ADDRESS = 0x00000004,
RIL_PARAM_A_ALL = 0x00000007
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
RIL_PARAM_A_NONERIL_PARAM_A_TYPERIL_PARAM_A_NUMPLANRIL_PARAM_A_ADDRESSRIL_PARAM_A_ALLtypedef enum _RILADDRESSPARAMMASK {
RIL_PARAM_A_TYPE,
RIL_PARAM_A_NUMPLAN,
RIL_PARAM_A_ADDRESS,
RIL_PARAM_A_ALL
} RILADDRESSPARAMMASK;