rusqlite/libsqlite3-sys/src/lib.rs

45 lines
1.0 KiB
Rust
Raw Normal View History

#![allow(non_snake_case, non_camel_case_types)]
#![cfg_attr(test, allow(deref_nullptr))] // https://github.com/rust-lang/rust-bindgen/issues/2066
// force linking to openssl
#[cfg(feature = "bundled-sqlcipher-vendored-openssl")]
extern crate openssl_sys;
pub use self::error::*;
use std::default::Default;
2014-10-20 07:56:41 +08:00
use std::mem;
mod error;
2022-01-06 02:40:31 +08:00
#[must_use]
pub fn SQLITE_STATIC() -> sqlite3_destructor_type {
2019-11-03 18:19:07 +08:00
None
}
2014-10-20 07:56:41 +08:00
2022-01-06 02:40:31 +08:00
#[must_use]
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::*;
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 {
fn default() -> Self {
unsafe { mem::zeroed() }
}
}
impl Default for sqlite3_vtab_cursor {
fn default() -> Self {
unsafe { mem::zeroed() }
}
}