svn_delta_path_driver

Function svn_delta_path_driver 

Source
pub unsafe extern "C" fn svn_delta_path_driver(
    editor: *const svn_delta_editor_t,
    edit_baton: *mut c_void,
    revision: svn_revnum_t,
    paths: *const apr_array_header_t,
    callback_func: svn_delta_path_driver_cb_func_t,
    callback_baton: *mut c_void,
    scratch_pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description

Similar to svn_delta_path_driver2, but takes an (unused) revision, and will sort the provided @a paths using svn_sort_compare_paths.

@note In versions prior to 1.8, this function would modify the order of elements in @a paths, despite the ‘const’ marker on the parameter. This has been fixed in 1.8.

@deprecated Provided for backward compatibility with the 1.7 API.