// ntddrilapitypes.h
struct RILUICCFILELOCKSTATUS {
DWORD cbSize;
DWORD dwParams;
RILUICCFILELOCKSTATUSACCESSCONDITION dwAccessCondition;
BYTE bPinRef[MAXNUM_PINREF];
};
View the official Windows Driver Kit DDI reference// rilapitypes.h
typedef struct _RILUICCFILELOCKSTATUS {
DWORD cbSize;
DWORD dwParams;
RILUICCFILELOCKSTATUSACCESSCONDITION dwAccessCondition;
BYTE [MAXNUM_PINREF] bPinRef;
} RILUICCFILELOCKSTATUS, RILUICCFILELOCKSTATUS;
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 RILUICCFILELOCKSTATUS.
cbSizeThe size of the structure in bytes.
dwParamsA bitwise combination of RILUICCFILELOCKSTATUSPARAMMASK 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.
dwAccessConditionSpecifies the access condition for the file. These values correspond to those specified in ETSI TS 102 221 section 9.5.1. The access condition should be one of RILUICCFILELOCKSTATUSACCESSCONDITION.
bPinRefA byte array specifying the application PIN references made by this application (keys for PIN1 and PIN2).
struct RILUICCFILELOCKSTATUS {
DWORD cbSize;
DWORD dwParams;
RILUICCFILELOCKSTATUSACCESSCONDITION dwAccessCondition;
BYTE bPinRef[MAXNUM_PINREF];
};
This topic supports the Windows driver infrastructure and is not intended to be used directly from your code.
cbSizedwParamsdwAccessConditionbPinReftypedef struct _RILUICCFILELOCKSTATUS {
DWORD cbSize;
DWORD dwParams;
RILUICCFILELOCKSTATUSACCESSCONDITION dwAccessCondition;
BYTE [MAXNUM_PINREF] bPinRef;
} RILUICCFILELOCKSTATUS, RILUICCFILELOCKSTATUS;