mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-01-09 13:28:57 +00:00
11 lines
346 B
Rust
11 lines
346 B
Rust
pub use libsql_sys::ffi::{
|
|
libsql_wal_methods, sqlite3, sqlite3_file, sqlite3_vfs, PageHdrIter, PgHdr, Wal, WalIndexHdr,
|
|
SQLITE_CANTOPEN, SQLITE_CHECKPOINT_TRUNCATE, SQLITE_IOERR_WRITE, SQLITE_OK,
|
|
};
|
|
|
|
#[repr(C)]
|
|
pub struct bottomless_methods {
|
|
pub methods: libsql_wal_methods,
|
|
pub underlying_methods: *const libsql_wal_methods,
|
|
}
|