pub type CK_C_INITIALIZE_ARGS = _CK_C_INITIALIZE_ARGS;

Aliased Type§

struct CK_C_INITIALIZE_ARGS {
    pub CreateMutex: Option<unsafe extern "C" fn(_: *mut *mut c_void) -> u64>,
    pub DestroyMutex: Option<unsafe extern "C" fn(_: *mut c_void) -> u64>,
    pub LockMutex: Option<unsafe extern "C" fn(_: *mut c_void) -> u64>,
    pub UnlockMutex: Option<unsafe extern "C" fn(_: *mut c_void) -> u64>,
    pub flags: u64,
    pub pReserved: *mut c_void,
}

Fields§

§CreateMutex: Option<unsafe extern "C" fn(_: *mut *mut c_void) -> u64>§DestroyMutex: Option<unsafe extern "C" fn(_: *mut c_void) -> u64>§LockMutex: Option<unsafe extern "C" fn(_: *mut c_void) -> u64>§UnlockMutex: Option<unsafe extern "C" fn(_: *mut c_void) -> u64>§flags: u64§pReserved: *mut c_void