// ntddrilapitypes.h
struct RILUICCRECORDSTATUS {
DWORD cbSize;
DWORD dwParams;
RILUICCRECORDTYPE dwRecordType;
DWORD dwItemCount;
DWORD dwSize;
RILUICCFILELOCKSTATUS fileLockStatus[MAXNUM_EFACCESSTYPES];
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef struct _RILUICCRECORDSTATUS {
DWORD cbSize;
DWORD dwParams;
RILUICCRECORDTYPE dwRecordType;
DWORD dwItemCount;
DWORD dwSize;
RILUICCFILELOCKSTATUS [MAXNUM_EFACCESSTYPES] fileLockStatus;
} RILUICCRECORDSTATUS, RILUICCRECORDSTATUS;
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 RILUICCRECORDSTATUS.
cbSizeThe size of the structure in bytes.
dwParamsA bitwise combination of RILUICCRECORDSTATUSPARAMMASK 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.
dwRecordTypeSpecifies the UICC file type, one of RILUICCRECORDTYPE.
dwItemCountSpecifies the number of items in the UICC file.
dwSizeSpecifies the size of each item in bytes.
fileLockStatusAn array of type RILUICCFILELOCKSTATUS that describes the access condition and a list of key references for each operation (READ, UPDATE, ACTIVATE, and DEACTIVATE in that order) on that file.
struct RILUICCRECORDSTATUS {
DWORD cbSize;
DWORD dwParams;
RILUICCRECORDTYPE dwRecordType;
DWORD dwItemCount;
DWORD dwSize;
RILUICCFILELOCKSTATUS fileLockStatus[MAXNUM_EFACCESSTYPES];
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
cbSizedwParamsdwRecordTypedwItemCountdwSizefileLockStatustypedef struct _RILUICCRECORDSTATUS {
DWORD cbSize;
DWORD dwParams;
RILUICCRECORDTYPE dwRecordType;
DWORD dwItemCount;
DWORD dwSize;
RILUICCFILELOCKSTATUS [MAXNUM_EFACCESSTYPES] fileLockStatus;
} RILUICCRECORDSTATUS, RILUICCRECORDSTATUS;