git_commit_parent_callback

Callback function to return parents for commit.

This is invoked with the count of the number of parents processed so far along with the user supplied payload. This should return a git_oid of the next parent or null if all parents have been provided.

package extern (C) nothrow @nogc
alias git_commit_parent_callback = const(libgit2_d.oid.git_oid)* function
(
size_t idx
,
void* payload
)

Meta