pub unsafe extern "C" fn svn_wc_conflict_description_create_tree2(
local_abspath: *const c_char,
node_kind: svn_node_kind_t,
operation: svn_wc_operation_t,
src_left_version: *const svn_wc_conflict_version_t,
src_right_version: *const svn_wc_conflict_version_t,
result_pool: *mut apr_pool_t,
) -> *mut svn_wc_conflict_description2_t
Expand description
Allocate an #svn_wc_conflict_description2_t structure in @a pool, initialize to represent a tree conflict, and return it.
Set the @c local_abspath field of the created struct to @a local_abspath (which must be an absolute path), the @c kind field to #svn_wc_conflict_kind_tree, the @c node_kind to @a node_kind, the @c operation to @a operation, the @c src_left_version field to @a src_left_version, and the @c src_right_version field to @a src_right_version.
@note: It is the caller’s responsibility to set the other required fields (such as the four file names and @c action and @c reason).
@since New in 1.7.