svn_ra_do_diff2

Function svn_ra_do_diff2 

Source
pub unsafe extern "C" fn svn_ra_do_diff2(
    session: *mut svn_ra_session_t,
    reporter: *mut *const svn_ra_reporter2_t,
    report_baton: *mut *mut c_void,
    revision: svn_revnum_t,
    diff_target: *const c_char,
    recurse: svn_boolean_t,
    ignore_ancestry: svn_boolean_t,
    text_deltas: svn_boolean_t,
    versus_url: *const c_char,
    diff_editor: *const svn_delta_editor_t,
    diff_baton: *mut c_void,
    pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description

Similar to svn_ra_do_diff3(), but taking @c svn_ra_reporter2_t instead of @c svn_ra_reporter3_t, and therefore only able to report @c svn_depth_infinity for depths. Perform the diff according to @a recurse: if TRUE, then @a depth is @c svn_depth_infinity, else it is @c svn_depth_files.

@deprecated Provided for compatibility with the 1.4 API.