pub unsafe extern "C" fn svn_repos_begin_report(
report_baton: *mut *mut c_void,
revnum: svn_revnum_t,
username: *const c_char,
repos: *mut svn_repos_t,
fs_base: *const c_char,
target: *const c_char,
tgt_path: *const c_char,
text_deltas: svn_boolean_t,
recurse: svn_boolean_t,
ignore_ancestry: svn_boolean_t,
editor: *const svn_delta_editor_t,
edit_baton: *mut c_void,
authz_read_func: svn_repos_authz_func_t,
authz_read_baton: *mut c_void,
pool: *mut apr_pool_t,
) -> *mut svn_error_tExpand description
The same as svn_repos_begin_report2(), but taking a boolean @a recurse flag, and sending FALSE for @a send_copyfrom_args.
If @a recurse is TRUE, the editor driver will drive the editor with a depth of #svn_depth_infinity; if FALSE, then with a depth of #svn_depth_files.
@note @a username is ignored, and has been removed in a revised version of this API.
@deprecated Provided for backward compatibility with the 1.4 API.