Merge pull request #397 from deltachat/move_autoconfig_to_dedicated_file

Move moz- and outlk-autoconfig to dedicated files
This commit is contained in:
Simon Laux
2019-08-19 19:42:25 +02:00
committed by GitHub
13 changed files with 476 additions and 467 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]
@@ -989,7 +989,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]