// ntddrilapitypes.h
struct RILOPERATORNAMES {
DWORD cbSize;
DWORD dwParams;
DWORD dwSystemType;
WCHAR wszLongName[MAXLENGTH_OPERATOR_LONG];
WCHAR wszShortName[MAXLENGTH_OPERATOR_SHORT];
WCHAR wszNumName[MAXLENGTH_OPERATOR_NUMERIC];
WCHAR wszCountryCode[MAXLENGTH_OPERATOR_COUNTRY_CODE];
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef struct _RILOPERATORNAMES {
DWORD cbSize;
DWORD dwParams;
DWORD dwSystemType;
WCHAR [MAXLENGTH_OPERATOR_LONG] wszLongName;
WCHAR [MAXLENGTH_OPERATOR_SHORT] wszShortName;
WCHAR [MAXLENGTH_OPERATOR_NUMERIC] wszNumName;
WCHAR [MAXLENGTH_OPERATOR_COUNTRY_CODE] wszCountryCode;
} RILOPERATORNAMES, RILOPERATORNAMES;
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 structure represents the RILOPERATORNAMES.
cbSizeThe size of the structure in bytes.
dwParamsA bitwise combination of RILOPERATORNAMESPARAMMASK enumeration values that indicates which members of the structure contain valid data. A member of the structure is valid if the corresponding bit flag is set.
dwSystemTypeMust specify one and only one system type.
wszLongNamewszShortNamewszNumNamewszCountryCodeMobile country code
struct RILOPERATORNAMES {
DWORD cbSize;
DWORD dwParams;
DWORD dwSystemType;
WCHAR wszLongName[MAXLENGTH_OPERATOR_LONG];
WCHAR wszShortName[MAXLENGTH_OPERATOR_SHORT];
WCHAR wszNumName[MAXLENGTH_OPERATOR_NUMERIC];
WCHAR wszCountryCode[MAXLENGTH_OPERATOR_COUNTRY_CODE];
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
cbSizedwParamsdwSystemTypewszLongNamewszShortNamewszNumNamewszCountryCodetypedef struct _RILOPERATORNAMES {
DWORD cbSize;
DWORD dwParams;
DWORD dwSystemType;
WCHAR [MAXLENGTH_OPERATOR_LONG] wszLongName;
WCHAR [MAXLENGTH_OPERATOR_SHORT] wszShortName;
WCHAR [MAXLENGTH_OPERATOR_NUMERIC] wszNumName;
WCHAR [MAXLENGTH_OPERATOR_COUNTRY_CODE] wszCountryCode;
} RILOPERATORNAMES, RILOPERATORNAMES;