Skip to content

Commit f37eb52

Browse files
authored
Merge branch 'master' into set-get-supported-extensions
2 parents 38af05a + 5055fbd commit f37eb52

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

LibGit2Sharp/Core/GitOdbBackend.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ static GitOdbBackend()
3333
public exists_prefix_callback ExistsPrefix;
3434
public IntPtr Refresh;
3535
public foreach_callback Foreach;
36+
37+
private IntPtr Padding; // TODO: add writemidx
38+
3639
public IntPtr Writepack;
3740
public IntPtr Freshen;
3841
public free_callback Free;

LibGit2Sharp/Core/GitRebaseOptions.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ internal class GitRebaseOptions
1818

1919
public GitCheckoutOpts checkout_options = new GitCheckoutOpts { version = 1 };
2020

21+
private IntPtr padding; // TODO: add git_commit_create_cb
22+
2123
public NativeMethods.commit_signing_callback signing_callback;
2224
}
2325
}

LibGit2Sharp/Core/GitRemoteCallbacks.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ internal struct GitRemoteCallbacks
3333

3434
internal IntPtr transport;
3535

36+
private IntPtr padding; // TODO: add git_remote_ready_cb
37+
3638
internal IntPtr payload;
3739

3840
internal NativeMethods.url_resolve_callback resolve_url;

0 commit comments

Comments
 (0)