mirror of
https://github.com/chatmail/core.git
synced 2026-04-29 03:16:29 +03:00
renaming dc_configure to configure
and renaming the autoconfigure modules
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user