svn_wc_revert2

Function svn_wc_revert2 

Source
pub unsafe extern "C" fn svn_wc_revert2(
    path: *const c_char,
    parent_access: *mut svn_wc_adm_access_t,
    recursive: svn_boolean_t,
    use_commit_times: svn_boolean_t,
    cancel_func: svn_cancel_func_t,
    cancel_baton: *mut c_void,
    notify_func: svn_wc_notify_func2_t,
    notify_baton: *mut c_void,
    pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description

Similar to svn_wc_revert3(), but with @a changelist_filter passed as @c NULL, and @a depth set according to @a recursive: if @a recursive is TRUE, @a depth is #svn_depth_infinity; if FALSE, @a depth is #svn_depth_empty.

@note Most APIs map @a recurse==FALSE to @a depth==svn_depth_files; revert is deliberately different.

@since New in 1.2. @deprecated Provided for backward compatibility with the 1.4 API.