2017-02-08 09:37:52 +08:00
|
|
|
#![allow(non_snake_case, non_camel_case_types)]
|
2021-06-29 01:04:27 +08:00
|
|
|
#![cfg_attr(test, allow(deref_nullptr))] // https://github.com/rust-lang/rust-bindgen/issues/2066
|
2015-12-13 05:39:05 +08:00
|
|
|
|
2021-10-06 13:04:04 +08:00
|
|
|
// force linking to openssl
|
|
|
|
#[cfg(feature = "bundled-sqlcipher-vendored-openssl")]
|
|
|
|
extern crate openssl_sys;
|
|
|
|
|
2015-12-13 12:13:48 +08:00
|
|
|
pub use self::error::*;
|
2015-02-24 04:22:34 +08:00
|
|
|
|
2017-03-09 03:35:07 +08:00
|
|
|
use std::default::Default;
|
2014-10-20 07:56:41 +08:00
|
|
|
use std::mem;
|
|
|
|
|
2015-12-13 12:13:48 +08:00
|
|
|
mod error;
|
2015-12-13 12:10:21 +08:00
|
|
|
|
2022-01-06 02:40:31 +08:00
|
|
|
#[must_use]
|
2015-07-27 01:43:43 +08:00
|
|
|
pub fn SQLITE_STATIC() -> sqlite3_destructor_type {
|
2019-11-03 18:19:07 +08:00
|
|
|
None
|
2015-07-27 01:43:43 +08:00
|
|
|
}
|
2014-10-20 07:56:41 +08:00
|
|
|
|
2022-01-06 02:40:31 +08:00
|
|
|
#[must_use]
|
2015-07-27 01:43:43 +08:00
|
|
|
pub fn SQLITE_TRANSIENT() -> sqlite3_destructor_type {
|
2022-01-06 03:03:30 +08:00
|
|
|
Some(unsafe { mem::transmute(-1_isize) })
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
|
2019-12-20 03:08:04 +08:00
|
|
|
#[allow(clippy::all)]
|
|
|
|
mod bindings {
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/bindgen.rs"));
|
|
|
|
}
|
|
|
|
pub use bindings::*;
|
2017-03-09 03:35:07 +08:00
|
|
|
|
|
|
|
pub type sqlite3_index_constraint = sqlite3_index_info_sqlite3_index_constraint;
|
|
|
|
pub type sqlite3_index_constraint_usage = sqlite3_index_info_sqlite3_index_constraint_usage;
|
|
|
|
|
|
|
|
impl Default for sqlite3_vtab {
|
2018-08-11 19:37:56 +08:00
|
|
|
fn default() -> Self {
|
|
|
|
unsafe { mem::zeroed() }
|
|
|
|
}
|
2017-03-09 03:35:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for sqlite3_vtab_cursor {
|
2018-08-11 19:37:56 +08:00
|
|
|
fn default() -> Self {
|
|
|
|
unsafe { mem::zeroed() }
|
|
|
|
}
|
|
|
|
}
|