pub unsafe extern "C" fn svn_client_status(
result_rev: *mut svn_revnum_t,
path: *const c_char,
revision: *mut svn_opt_revision_t,
status_func: svn_wc_status_func_t,
status_baton: *mut c_void,
recurse: svn_boolean_t,
get_all: svn_boolean_t,
update: svn_boolean_t,
no_ignore: svn_boolean_t,
ctx: *mut svn_client_ctx_t,
pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description
Similar to svn_client_status2(), but with @a ignore_externals always set to FALSE, taking the #svn_wc_status_func_t type instead of the #svn_wc_status_func2_t type for @a status_func, and requiring @a *revision to be non-const even though it is treated as constant.
@deprecated Provided for backward compatibility with the 1.1 API.