pub type alpm_cb_fetch = Option<unsafe extern "C" fn(ctx: *mut c_void, url: *const c_char, localpath: *const c_char, force: c_int) -> c_int>;
Expand description

A callback for downloading files @param ctx user-provided context @param url the URL of the file to be downloaded @param localpath the directory to which the file should be downloaded @param force whether to force an update, even if the file is the same @return 0 on success, 1 if the file exists and is identical, -1 on error.