Skip to main content

svn_ra_do_status

Function svn_ra_do_status 

Source
pub unsafe extern "C" fn svn_ra_do_status(
    session: *mut svn_ra_session_t,
    reporter: *mut *const svn_ra_reporter2_t,
    report_baton: *mut *mut c_void,
    status_target: *const c_char,
    revision: svn_revnum_t,
    recurse: svn_boolean_t,
    status_editor: *const svn_delta_editor_t,
    status_baton: *mut c_void,
    pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description

Similar to svn_ra_do_status2(), 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. The status operation itself is performed according to @a recurse: if TRUE, then @a depth is @c svn_depth_infinity, else it is @c svn_depth_immediates.

@deprecated Provided for compatibility with the 1.4 API.