0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-20 13:48:13 +00:00
Files
libsql/bottomless/src/ffi.rs
2023-10-17 17:41:26 +02:00

11 lines
356 B
Rust

pub use sqld_libsql_bindings::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,
}