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) -> u32>,
    pub DestroyMutex: Option<unsafe extern "C" fn(_: *mut c_void) -> u32>,
    pub LockMutex: Option<unsafe extern "C" fn(_: *mut c_void) -> u32>,
    pub UnlockMutex: Option<unsafe extern "C" fn(_: *mut c_void) -> u32>,
    pub flags: u32,
    pub pReserved: *mut c_void,
}

Fields§

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