// ntddrilapitypes.h
struct RILUMTSMRL {
DWORD cbSize;
DWORD dwNumSubscribers;
RILSUBSCRIBERINFO rsiInfo[1];
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef struct _RILUICCSUBSCRIBERNUMBERS {
DWORD cbSize;
DWORD dwNumSubscribers;
RILSUBSCRIBERINFO [1] rsiInfo;
} RILUICCSUBSCRIBERNUMBERS, RILUICCSUBSCRIBERNUMBERS;
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 RILUICCSUBSCRIBERNUMBERS.
cbSizeThe size of the structure in bytes.
dwNumSubscribersThe number of subscribers.
rsiInfoArray of RILSUBSCRIBERINFO, each of which specifies a phone number assigned to the user as defined below. Although statically declared as a one-element array, the actual length is dwNumSubscribers.
struct RILUMTSMRL {
DWORD cbSize;
DWORD dwNumSubscribers;
RILSUBSCRIBERINFO rsiInfo[1];
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
cbSizedwNumSubscribersrsiInfotypedef struct _RILUICCSUBSCRIBERNUMBERS {
DWORD cbSize;
DWORD dwNumSubscribers;
RILSUBSCRIBERINFO [1] rsiInfo;
} RILUICCSUBSCRIBERNUMBERS, RILUICCSUBSCRIBERNUMBERS;