pub unsafe extern "C" fn svn_delta_path_driver_start(
state_p: *mut *mut svn_delta_path_driver_state_t,
editor: *const svn_delta_editor_t,
edit_baton: *mut c_void,
callback_func: svn_delta_path_driver_cb_func2_t,
callback_baton: *mut c_void,
result_pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description
Return a path driver object that can drive @a editor (with its @a edit_baton) to visit a series of paths.
As each path is hit as part of the editor drive, the path driver will call @a callback_func and @a callback_baton to allow the caller to handle the portion of the editor drive related to that path.
This will not call the editor’s open_root method; for that, see svn_delta_path_driver_step().
@since New in 1.12.