diff options
Diffstat (limited to 'subversion/include/private/svn_fs_util.h')
-rw-r--r-- | subversion/include/private/svn_fs_util.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/subversion/include/private/svn_fs_util.h b/subversion/include/private/svn_fs_util.h index c9f74a1268582..fc548ed15ee08 100644 --- a/subversion/include/private/svn_fs_util.h +++ b/subversion/include/private/svn_fs_util.h @@ -206,6 +206,15 @@ svn_fs__path_change_create_internal(const svn_fs_id_t *node_rev_id, svn_fs_path_change_kind_t change_kind, apr_pool_t *pool); +/* Allocate an svn_fs_path_change3_t structure in RESULT_POOL, initialize + and return it. + + Set the change_kind to CHANGE_KIND. Set all other fields to their + _unknown, NULL or invalid value, respectively. */ +svn_fs_path_change3_t * +svn_fs__path_change_create_internal2(svn_fs_path_change_kind_t change_kind, + apr_pool_t *result_pool); + /* Append REL_PATH (which may contain slashes) to each path that exists in the mergeinfo INPUT, and return a new mergeinfo in *OUTPUT. Deep copies the values. Perform all allocations in POOL. */ |