Introduce init_module! macro to create sqlite_module

This commit is contained in:
gwenn
2016-02-02 21:16:10 +01:00
parent f749d24ac1
commit f261e8f7eb
2 changed files with 90 additions and 76 deletions

View File

@@ -89,7 +89,7 @@ mod error;
#[cfg(feature = "backup")]pub mod backup;
#[cfg(feature = "functions")] pub mod functions;
#[cfg(feature = "blob")] pub mod blob;
#[cfg(all(feature = "vtab", feature = "functions"))] pub mod vtab;
#[cfg(all(feature = "vtab", feature = "functions"))]pub mod vtab;
/// Old name for `Result`. `SqliteResult` is deprecated.
pub type SqliteResult<T> = Result<T>;