This commit is contained in:
gwenn 2023-03-25 16:15:05 +01:00
parent a5c460a8f7
commit 7dac07be13

View File

@ -538,7 +538,8 @@ mod bindings {
}"#, }"#,
) )
.blocklist_function("sqlite3_cancel_auto_extension") .blocklist_function("sqlite3_cancel_auto_extension")
.raw_line(r#"extern "C" { .raw_line(
r#"extern "C" {
pub fn sqlite3_cancel_auto_extension( pub fn sqlite3_cancel_auto_extension(
xEntryPoint: ::std::option::Option< xEntryPoint: ::std::option::Option<
unsafe extern "C" fn( unsafe extern "C" fn(
@ -548,7 +549,8 @@ mod bindings {
) -> ::std::os::raw::c_int, ) -> ::std::os::raw::c_int,
>, >,
) -> ::std::os::raw::c_int; ) -> ::std::os::raw::c_int;
}"#) }"#,
)
.rustfmt_bindings(true); .rustfmt_bindings(true);
if cfg!(any(feature = "sqlcipher", feature = "bundled-sqlcipher")) { if cfg!(any(feature = "sqlcipher", feature = "bundled-sqlcipher")) {