@@ -36,34 +36,34 @@ public static unsafe BlameHandle git_blame_file(
36
36
37
37
#region git_blob_
38
38
39
- public static unsafe IntPtr git_blob_create_fromstream ( RepositoryHandle repo , string hintpath )
39
+ public static unsafe IntPtr git_blob_create_from_stream ( RepositoryHandle repo , string hintpath )
40
40
{
41
41
IntPtr writestream_ptr ;
42
42
43
- Ensure . ZeroResult ( NativeMethods . git_blob_create_fromstream ( out writestream_ptr , repo , hintpath ) ) ;
43
+ Ensure . ZeroResult ( NativeMethods . git_blob_create_from_stream ( out writestream_ptr , repo , hintpath ) ) ;
44
44
return writestream_ptr ;
45
45
}
46
46
47
47
public static unsafe ObjectId git_blob_create_fromstream_commit ( IntPtr writestream_ptr )
48
48
{
49
49
var oid = new GitOid ( ) ;
50
- Ensure . ZeroResult ( NativeMethods . git_blob_create_fromstream_commit ( ref oid , writestream_ptr ) ) ;
50
+ Ensure . ZeroResult ( NativeMethods . git_blob_create_from_stream_commit ( ref oid , writestream_ptr ) ) ;
51
51
return oid ;
52
52
}
53
53
54
- public static unsafe ObjectId git_blob_create_fromdisk ( RepositoryHandle repo , FilePath path )
54
+ public static unsafe ObjectId git_blob_create_from_disk ( RepositoryHandle repo , FilePath path )
55
55
{
56
56
var oid = new GitOid ( ) ;
57
- int res = NativeMethods . git_blob_create_fromdisk ( ref oid , repo , path ) ;
57
+ int res = NativeMethods . git_blob_create_from_disk ( ref oid , repo , path ) ;
58
58
Ensure . ZeroResult ( res ) ;
59
59
60
60
return oid ;
61
61
}
62
62
63
- public static unsafe ObjectId git_blob_create_fromfile ( RepositoryHandle repo , FilePath path )
63
+ public static unsafe ObjectId git_blob_create_from_workdir ( RepositoryHandle repo , FilePath path )
64
64
{
65
65
var oid = new GitOid ( ) ;
66
- int res = NativeMethods . git_blob_create_fromworkdir ( ref oid , repo , path ) ;
66
+ int res = NativeMethods . git_blob_create_from_workdir ( ref oid , repo , path ) ;
67
67
Ensure . ZeroResult ( res ) ;
68
68
69
69
return oid ;
@@ -855,21 +855,22 @@ public static unsafe int git_diff_num_deltas(DiffHandle diff)
855
855
856
856
#region git_error_
857
857
858
- public static void git_error_set_str ( GitErrorCategory error_class , Exception exception )
858
+ public static int git_error_set_str ( GitErrorCategory error_class , Exception exception )
859
859
{
860
860
if ( exception is OutOfMemoryException )
861
861
{
862
862
NativeMethods . git_error_set_oom ( ) ;
863
+ return 0 ;
863
864
}
864
865
else
865
866
{
866
- NativeMethods . git_error_set_str ( error_class , ErrorMessageFromException ( exception ) ) ;
867
+ return NativeMethods . git_error_set_str ( error_class , ErrorMessageFromException ( exception ) ) ;
867
868
}
868
869
}
869
870
870
- public static void git_error_set_str ( GitErrorCategory error_class , String errorString )
871
+ public static int git_error_set_str ( GitErrorCategory error_class , String errorString )
871
872
{
872
- NativeMethods . git_error_set_str ( error_class , errorString ) ;
873
+ return NativeMethods . git_error_set_str ( error_class , errorString ) ;
873
874
}
874
875
875
876
/// <summary>
@@ -2589,9 +2590,9 @@ public static unsafe FilePath git_repository_path(RepositoryHandle repo)
2589
2590
return NativeMethods . git_repository_path ( repo ) ;
2590
2591
}
2591
2592
2592
- public static unsafe void git_repository_set_config ( RepositoryHandle repo , ConfigurationHandle config )
2593
+ public static unsafe int git_repository_set_config ( RepositoryHandle repo , ConfigurationHandle config )
2593
2594
{
2594
- NativeMethods . git_repository_set_config ( repo , config ) ;
2595
+ return NativeMethods . git_repository_set_config ( repo , config ) ;
2595
2596
}
2596
2597
2597
2598
public static unsafe void git_repository_set_ident ( RepositoryHandle repo , string name , string email )
@@ -2600,9 +2601,9 @@ public static unsafe void git_repository_set_ident(RepositoryHandle repo, string
2600
2601
Ensure . ZeroResult ( res ) ;
2601
2602
}
2602
2603
2603
- public static unsafe void git_repository_set_index ( RepositoryHandle repo , IndexHandle index )
2604
+ public static unsafe int git_repository_set_index ( RepositoryHandle repo , IndexHandle index )
2604
2605
{
2605
- NativeMethods . git_repository_set_index ( repo , index ) ;
2606
+ return NativeMethods . git_repository_set_index ( repo , index ) ;
2606
2607
}
2607
2608
2608
2609
public static unsafe void git_repository_set_workdir ( RepositoryHandle repo , FilePath workdir )
@@ -2783,14 +2784,14 @@ public static unsafe void git_revwalk_reset(RevWalkerHandle walker)
2783
2784
NativeMethods . git_revwalk_reset ( walker ) ;
2784
2785
}
2785
2786
2786
- public static unsafe void git_revwalk_sorting ( RevWalkerHandle walker , CommitSortStrategies options )
2787
+ public static unsafe int git_revwalk_sorting ( RevWalkerHandle walker , CommitSortStrategies options )
2787
2788
{
2788
- NativeMethods . git_revwalk_sorting ( walker , options ) ;
2789
+ return NativeMethods . git_revwalk_sorting ( walker , options ) ;
2789
2790
}
2790
2791
2791
- public static unsafe void git_revwalk_simplify_first_parent ( RevWalkerHandle walker )
2792
+ public static unsafe int git_revwalk_simplify_first_parent ( RevWalkerHandle walker )
2792
2793
{
2793
- NativeMethods . git_revwalk_simplify_first_parent ( walker ) ;
2794
+ return NativeMethods . git_revwalk_simplify_first_parent ( walker ) ;
2794
2795
}
2795
2796
2796
2797
#endregion
0 commit comments