// ntddrilapitypes.h
struct RILSUBSCRIBERINFO {
DWORD cbSize;
DWORD dwParams;
RILADDRESS raAddress;
WCHAR wszDescription[MAXLENGTH_DESCRIPTION];
RILSUBSCRIBERINFOSERVICE dwService;
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef struct _RILSUBSCRIBERINFO {
DWORD cbSize;
DWORD dwParams;
RILADDRESS raAddress;
WCHAR [MAXLENGTH_DESCRIPTION] wszDescription;
RILSUBSCRIBERINFOSERVICE dwService;
} RILSUBSCRIBERINFO, RILSUBSCRIBERINFO;
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 RILSUBSCRIBERINFO.
cbSizeThe size of the structure in bytes.
dwParamsA bitwise combination of RILSUBSCRIBERINFOPARAMMASK 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.
raAddressPhone number of the subscriber line, of type RILADDRESSTYPE.
wszDescriptionText description of the subscriber line.
dwServiceSpecifies the service related to the subscriber phone number, of type RILSUBSCRIBERINFOSERVICE.
struct RILSUBSCRIBERINFO {
DWORD cbSize;
DWORD dwParams;
RILADDRESS raAddress;
WCHAR wszDescription[MAXLENGTH_DESCRIPTION];
RILSUBSCRIBERINFOSERVICE dwService;
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
cbSizedwParamsraAddresswszDescriptiondwServicetypedef struct _RILSUBSCRIBERINFO {
DWORD cbSize;
DWORD dwParams;
RILADDRESS raAddress;
WCHAR [MAXLENGTH_DESCRIPTION] wszDescription;
RILSUBSCRIBERINFOSERVICE dwService;
} RILSUBSCRIBERINFO, RILSUBSCRIBERINFO;