hwright@tigris.org writes:
> --- branches/ancestry-walk/subversion/libsvn_repos/rev_hunt.c (original)
> +++ branches/ancestry-walk/subversion/libsvn_repos/rev_hunt.c Thu Sep 13 20:49:24 2007
> @@ -205,7 +205,42 @@
> start, end, cross_copies, pool);
> }
>
> +/* Baton for svn_repos_history2() */
> +struct history_cb_baton
> +{
> + svn_repos_history_func_t history_func;
> + void *history_baton;
> +};
> +
> +/* Callback for ancestry walking in svn_repos_history2(). */
> +static svn_error_t *
> +history_ancestor(void *baton,
> + const char *path,
> + svn_revnum_t rev,
> + svn_boolean_t is_merge,
> + svn_boolean_t *halt,
> + apr_pool_t *pool)
> +{
I think when we implement a named type, we generally say so:
"Implements the 'svn_foo_bar_baz_t' interface" or whatever.
-K
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Sep 14 08:11:46 2007