Type Alias sqlite3_mutex_methods
Source pub type sqlite3_mutex_methods = Struct_sqlite3_mutex_methods;
struct sqlite3_mutex_methods {
pub xMutexInit: Option<extern "C" fn() -> i32>,
pub xMutexEnd: Option<extern "C" fn() -> i32>,
pub xMutexAlloc: Option<extern "C" fn(i32) -> *mut Struct_sqlite3_mutex>,
pub xMutexFree: Option<extern "C" fn(*mut Struct_sqlite3_mutex)>,
pub xMutexEnter: Option<extern "C" fn(*mut Struct_sqlite3_mutex)>,
pub xMutexTry: Option<extern "C" fn(*mut Struct_sqlite3_mutex) -> i32>,
pub xMutexLeave: Option<extern "C" fn(*mut Struct_sqlite3_mutex)>,
pub xMutexHeld: Option<extern "C" fn(*mut Struct_sqlite3_mutex) -> i32>,
pub xMutexNotheld: Option<extern "C" fn(*mut Struct_sqlite3_mutex) -> i32>,
}