pub unsafe extern "C" fn svn_client_get_changelists(
path: *const c_char,
changelists: *const apr_array_header_t,
depth: svn_depth_t,
callback_func: svn_changelist_receiver_t,
callback_baton: *mut c_void,
ctx: *mut svn_client_ctx_t,
pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description
Beginning at @a path, crawl to @a depth to discover every path in or under @a path which belongs to one of the changelists in @a changelists (an array of const char * changelist names). If @a changelists 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 path is a local WC path.
If @a ctx->cancel_func is not @c NULL, invoke it passing @a ctx->cancel_baton during the recursive walk.
@since New in 1.5.