svn_wc_get_changelists

Function svn_wc_get_changelists 

Source
pub unsafe extern "C" fn svn_wc_get_changelists(
    wc_ctx: *mut svn_wc_context_t,
    local_abspath: *const c_char,
    depth: svn_depth_t,
    changelist_filter: *const apr_array_header_t,
    callback_func: svn_changelist_receiver_t,
    callback_baton: *mut c_void,
    cancel_func: svn_cancel_func_t,
    cancel_baton: *mut c_void,
    scratch_pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description

Beginning at @a local_abspath, crawl to @a depth to discover every path in or under @a local_abspath which belongs to one of the changelists in @a changelist_filter (an array of const char * changelist names). If @a changelist_filter is @c NULL, discover paths with any changelist. Call @a callback_func (with @a callback_baton) each time a changelist-having path is discovered.

@a local_abspath is a local WC path.

If @a cancel_func is not @c NULL, invoke it passing @a cancel_baton during the recursive walk.

@since New in 1.7.