renaming dc_configure to configure

and renaming the autoconfigure modules
This commit is contained in:
Simon Laux
2019-08-18 21:21:43 +02:00
parent e3b2a7a69b
commit 491826556b
13 changed files with 21 additions and 21 deletions

View File

@@ -173,7 +173,7 @@ pub unsafe extern "C" fn dc_configure(context: *mut dc_context_t) {
assert!(!context.is_null());
let context = &*context;
dc_configure::dc_configure(context)
configure::configure(context)
}
#[no_mangle]
@@ -181,7 +181,7 @@ pub unsafe extern "C" fn dc_is_configured(context: *mut dc_context_t) -> libc::c
assert!(!context.is_null());
let context = &*context;
dc_configure::dc_is_configured(context)
configure::dc_is_configured(context)
}
#[no_mangle]
@@ -986,7 +986,7 @@ pub unsafe extern "C" fn dc_stop_ongoing_process(context: *mut dc_context_t) {
assert!(!context.is_null());
let context = &*context;
dc_configure::dc_stop_ongoing_process(context)
configure::dc_stop_ongoing_process(context)
}
#[no_mangle]