pub unsafe extern "C" fn svn_delta_path_driver2(
editor: *const svn_delta_editor_t,
edit_baton: *mut c_void,
paths: *const apr_array_header_t,
sort_paths: svn_boolean_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
Like svn_delta_path_driver3() but with a different callback function signature.
Optionally, paths in @a paths could have a ‘/’ prefix instead of being relpaths. If any of them do, then (since 1.12) ALL paths sent to the callback will have a ‘/’ prefix.
@deprecated Provided for backward compatibility with the 1.11 API. @since New in 1.8. Before 1.12, paths sent to the callback were the exact paths passed in @a paths.