-
Notifications
You must be signed in to change notification settings - Fork 897
/
Copy pathNativeMethods.cs
1601 lines (1265 loc) · 72.5 KB
/
NativeMethods.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.ConstrainedExecution;
using System.Runtime.InteropServices;
using System.Threading;
using LibGit2Sharp.Core.Handles;
// ReSharper disable InconsistentNaming
namespace LibGit2Sharp.Core
{
internal static class NativeMethods
{
public const uint GIT_PATH_MAX = 4096;
private const string libgit2 = NativeDllName.Name;
private static readonly LibraryLifetimeObject lifetimeObject;
private static int handlesCount;
/// <summary>
/// Internal hack to ensure that the call to git_threads_shutdown is called after all handle finalizers
/// have run to completion ensuring that no dangling git-related finalizer runs after git_threads_shutdown.
/// There should never be more than one instance of this object per AppDomain.
/// </summary>
private sealed class LibraryLifetimeObject : CriticalFinalizerObject
{
// Ensure mono can JIT the .cctor and adjust the PATH before trying to load the native library.
// See https://github.com/libgit2/libgit2sharp/pull/190
[MethodImpl(MethodImplOptions.NoInlining)]
public LibraryLifetimeObject()
{
int res = git_libgit2_init();
Ensure.Int32Result(res);
if (res == 1)
{
// Ignore the error that this propagates. Call it in case openssl is being used.
git_openssl_set_locking();
}
AddHandle();
}
~LibraryLifetimeObject()
{
RemoveHandle();
}
}
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
internal static void AddHandle()
{
Interlocked.Increment(ref handlesCount);
}
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
internal static void RemoveHandle()
{
int count = Interlocked.Decrement(ref handlesCount);
if (count == 0)
{
git_libgit2_shutdown();
}
}
static NativeMethods()
{
if (Platform.OperatingSystem == OperatingSystemType.Windows)
{
string nativeLibraryPath = GlobalSettings.GetAndLockNativeLibraryPath();
string path = Path.Combine(nativeLibraryPath, Platform.ProcessorArchitecture);
const string pathEnvVariable = "PATH";
Environment.SetEnvironmentVariable(pathEnvVariable,
String.Format(CultureInfo.InvariantCulture, "{0}{1}{2}", path, Path.PathSeparator, Environment.GetEnvironmentVariable(pathEnvVariable)));
}
// See LibraryLifetimeObject description.
lifetimeObject = new LibraryLifetimeObject();
}
[DllImport(libgit2)]
internal static extern GitErrorSafeHandle giterr_last();
[DllImport(libgit2)]
internal static extern void giterr_set_str(
GitErrorCategory error_class,
string errorString);
[DllImport(libgit2)]
internal static extern void giterr_set_oom();
[DllImport(libgit2)]
internal static extern UInt32 git_blame_get_hunk_count(BlameSafeHandle blame);
[DllImport(libgit2)]
internal static extern IntPtr git_blame_get_hunk_byindex(
BlameSafeHandle blame, UInt32 index);
[DllImport(libgit2)]
internal static extern int git_blame_file(
out BlameSafeHandle blame,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath path,
GitBlameOptions options);
[DllImport(libgit2)]
internal static extern void git_blame_free(IntPtr blame);
[DllImport(libgit2)]
internal static extern int git_blob_create_fromdisk(
ref GitOid id,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath path);
[DllImport(libgit2)]
internal static extern int git_blob_create_fromworkdir(
ref GitOid id,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath relative_path);
internal delegate int source_callback(
IntPtr content,
int max_length,
IntPtr data);
[DllImport(libgit2)]
internal static extern int git_blob_create_fromchunks(
ref GitOid oid,
RepositorySafeHandle repositoryPtr,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath hintpath,
source_callback fileCallback,
IntPtr data);
[DllImport(libgit2)]
internal static extern int git_blob_filtered_content(
GitBuf buf,
GitObjectSafeHandle blob,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath as_path,
[MarshalAs(UnmanagedType.Bool)] bool check_for_binary_data);
[DllImport(libgit2)]
internal static extern IntPtr git_blob_rawcontent(GitObjectSafeHandle blob);
[DllImport(libgit2)]
internal static extern Int64 git_blob_rawsize(GitObjectSafeHandle blob);
[DllImport(libgit2)]
internal static extern int git_branch_create_from_annotated(
out ReferenceSafeHandle ref_out,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string branch_name,
GitAnnotatedCommitHandle target,
[MarshalAs(UnmanagedType.Bool)] bool force);
[DllImport(libgit2)]
internal static extern int git_branch_delete(
ReferenceSafeHandle reference);
internal delegate int branch_foreach_callback(
IntPtr branch_name,
GitBranchType branch_type,
IntPtr payload);
[DllImport(libgit2)]
internal static extern void git_branch_iterator_free(
IntPtr iterator);
[DllImport(libgit2)]
internal static extern int git_branch_iterator_new(
out BranchIteratorSafeHandle iter_out,
RepositorySafeHandle repo,
GitBranchType branch_type);
[DllImport(libgit2)]
internal static extern int git_branch_move(
out ReferenceSafeHandle ref_out,
ReferenceSafeHandle reference,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string new_branch_name,
[MarshalAs(UnmanagedType.Bool)] bool force);
[DllImport(libgit2)]
internal static extern int git_branch_next(
out ReferenceSafeHandle ref_out,
out GitBranchType type_out,
BranchIteratorSafeHandle iter);
[DllImport(libgit2)]
internal static extern int git_branch_remote_name(
GitBuf buf,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string canonical_branch_name);
[DllImport(libgit2)]
internal static extern int git_remote_rename(
ref GitStrArray problems,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string old_name,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string new_name);
internal delegate int git_remote_rename_problem_cb(
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))] string problematic_refspec,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_branch_upstream_name(
GitBuf buf,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string referenceName);
[DllImport(libgit2)]
internal static extern void git_buf_free(GitBuf buf);
[DllImport(libgit2)]
internal static extern int git_checkout_tree(
RepositorySafeHandle repo,
GitObjectSafeHandle treeish,
ref GitCheckoutOpts opts);
[DllImport(libgit2)]
internal static extern int git_checkout_index(
RepositorySafeHandle repo,
GitObjectSafeHandle treeish,
ref GitCheckoutOpts opts);
[DllImport(libgit2)]
internal static extern int git_clone(
out RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string origin_url,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath workdir_path,
ref GitCloneOptions opts);
[DllImport(libgit2)]
internal static extern IntPtr git_commit_author(GitObjectSafeHandle commit);
[DllImport(libgit2)]
internal static extern IntPtr git_commit_committer(GitObjectSafeHandle commit);
[DllImport(libgit2)]
internal static extern int git_commit_create_from_ids(
out GitOid id,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string updateRef,
SignatureSafeHandle author,
SignatureSafeHandle committer,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string encoding,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string message,
ref GitOid tree,
UIntPtr parentCount,
[MarshalAs(UnmanagedType.LPArray)] [In] IntPtr[] parents);
[DllImport(libgit2)]
[return : MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))]
internal static extern string git_commit_message(GitObjectSafeHandle commit);
[DllImport(libgit2)]
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))]
internal static extern string git_commit_summary(GitObjectSafeHandle commit);
[DllImport(libgit2)]
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))]
internal static extern string git_commit_message_encoding(GitObjectSafeHandle commit);
[DllImport(libgit2)]
internal static extern OidSafeHandle git_commit_parent_id(GitObjectSafeHandle commit, uint n);
[DllImport(libgit2)]
internal static extern uint git_commit_parentcount(GitObjectSafeHandle commit);
[DllImport(libgit2)]
internal static extern OidSafeHandle git_commit_tree_id(GitObjectSafeHandle commit);
[DllImport(libgit2)]
internal static extern int git_config_delete_entry(ConfigurationSafeHandle cfg, string name);
[DllImport(libgit2)]
internal static extern int git_config_find_global(GitBuf global_config_path);
[DllImport(libgit2)]
internal static extern int git_config_find_system(GitBuf system_config_path);
[DllImport(libgit2)]
internal static extern int git_config_find_xdg(GitBuf xdg_config_path);
[DllImport(libgit2)]
internal static extern void git_config_free(IntPtr cfg);
[DllImport(libgit2)]
internal static extern void git_config_entry_free(IntPtr entry);
[DllImport(libgit2)]
internal static extern int git_config_get_entry(
out GitConfigEntryHandle entry,
ConfigurationSafeHandle cfg,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string name);
[DllImport(libgit2)]
internal static extern int git_config_add_file_ondisk(
ConfigurationSafeHandle cfg,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath path,
uint level,
[MarshalAs(UnmanagedType.Bool)] bool force);
[DllImport(libgit2)]
internal static extern int git_config_new(out ConfigurationSafeHandle cfg);
[DllImport(libgit2)]
internal static extern int git_config_open_level(
out ConfigurationSafeHandle cfg,
ConfigurationSafeHandle parent,
uint level);
[DllImport(libgit2)]
internal static extern int git_config_parse_bool(
[MarshalAs(UnmanagedType.Bool)] out bool value,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string valueToParse);
[DllImport(libgit2)]
internal static extern int git_config_parse_int32(
[MarshalAs(UnmanagedType.I4)] out int value,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string valueToParse);
[DllImport(libgit2)]
internal static extern int git_config_parse_int64(
[MarshalAs(UnmanagedType.I8)] out long value,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string valueToParse);
[DllImport(libgit2)]
internal static extern int git_config_set_bool(
ConfigurationSafeHandle cfg,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string name,
[MarshalAs(UnmanagedType.Bool)] bool value);
[DllImport(libgit2)]
internal static extern int git_config_set_int32(
ConfigurationSafeHandle cfg,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string name,
int value);
[DllImport(libgit2)]
internal static extern int git_config_set_int64(
ConfigurationSafeHandle cfg,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string name,
long value);
[DllImport(libgit2)]
internal static extern int git_config_set_string(
ConfigurationSafeHandle cfg,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string name,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string value);
internal delegate int config_foreach_callback(
IntPtr entry,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_config_foreach(
ConfigurationSafeHandle cfg,
config_foreach_callback callback,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_config_iterator_glob_new(
out ConfigurationIteratorSafeHandle iter,
ConfigurationSafeHandle cfg,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string regexp);
[DllImport(libgit2)]
internal static extern int git_config_next(
out IntPtr entry,
ConfigurationIteratorSafeHandle iter);
[DllImport(libgit2)]
internal static extern void git_config_iterator_free(IntPtr iter);
[DllImport(libgit2)]
internal static extern int git_config_snapshot(out ConfigurationSafeHandle @out, ConfigurationSafeHandle config);
// Ordinarily we would decorate the `url` parameter with the StrictUtf8Marshaler like we do everywhere
// else, but apparently doing a native->managed callback with the 64-bit version of CLR 2.0 can
// sometimes vomit when using a custom IMarshaler. So yeah, don't do that. If you need the url,
// call StrictUtf8Marshaler.FromNative manually. See the discussion here:
// http://social.msdn.microsoft.com/Forums/en-US/netfx64bit/thread/1eb746c6-d695-4632-8a9e-16c4fa98d481
internal delegate int git_cred_acquire_cb(
out IntPtr cred,
IntPtr url,
IntPtr username_from_url,
GitCredentialType allowed_types,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_cred_default_new(out IntPtr cred);
[DllImport(libgit2)]
internal static extern int git_cred_userpass_plaintext_new(
out IntPtr cred,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof (StrictUtf8Marshaler))] string username,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof (StrictUtf8Marshaler))] string password);
[DllImport(libgit2)]
internal static extern int git_cred_ssh_key_new(
out IntPtr cred,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string username,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string publickey,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string privatekey,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string passphrase);
[DllImport(libgit2)]
internal static extern int git_cred_username_new(
out IntPtr cred,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string username);
[DllImport(libgit2)]
internal static extern int git_cred_ssh_key_from_agent(
out IntPtr cred,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string username);
[DllImport(libgit2)]
internal static extern int git_describe_commit(
out DescribeResultSafeHandle describe,
GitObjectSafeHandle committish,
ref GitDescribeOptions options);
[DllImport(libgit2)]
internal static extern int git_describe_format(
GitBuf buf,
DescribeResultSafeHandle describe,
ref GitDescribeFormatOptions options);
[DllImport(libgit2)]
internal static extern void git_describe_result_free(IntPtr describe);
[DllImport(libgit2)]
internal static extern void git_diff_free(IntPtr diff);
[DllImport(libgit2)]
internal static extern int git_diff_tree_to_tree(
out DiffSafeHandle diff,
RepositorySafeHandle repo,
GitObjectSafeHandle oldTree,
GitObjectSafeHandle newTree,
GitDiffOptions options);
[DllImport(libgit2)]
internal static extern int git_diff_tree_to_index(
out DiffSafeHandle diff,
RepositorySafeHandle repo,
GitObjectSafeHandle oldTree,
IndexSafeHandle index,
GitDiffOptions options);
[DllImport(libgit2)]
internal static extern int git_diff_merge(
DiffSafeHandle onto,
DiffSafeHandle from);
[DllImport(libgit2)]
internal static extern int git_diff_index_to_workdir(
out DiffSafeHandle diff,
RepositorySafeHandle repo,
IndexSafeHandle index,
GitDiffOptions options);
[DllImport(libgit2)]
internal static extern int git_diff_tree_to_workdir(
out DiffSafeHandle diff,
RepositorySafeHandle repo,
GitObjectSafeHandle oldTree,
GitDiffOptions options);
internal delegate int git_diff_file_cb(
[In] GitDiffDelta delta,
float progress,
IntPtr payload);
internal delegate int git_diff_hunk_cb(
[In] GitDiffDelta delta,
[In] GitDiffHunk hunk,
IntPtr payload);
internal delegate int git_diff_line_cb(
[In] GitDiffDelta delta,
[In] GitDiffHunk hunk,
[In] GitDiffLine line,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_diff_blobs(
GitObjectSafeHandle oldBlob,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath old_as_path,
GitObjectSafeHandle newBlob,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath new_as_path,
GitDiffOptions options,
git_diff_file_cb fileCallback,
git_diff_hunk_cb hunkCallback,
git_diff_line_cb lineCallback,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_diff_foreach(
DiffSafeHandle diff,
git_diff_file_cb fileCallback,
git_diff_hunk_cb hunkCallback,
git_diff_line_cb lineCallback,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_diff_find_similar(
DiffSafeHandle diff,
GitDiffFindOptions options);
[DllImport(libgit2)]
internal static extern UIntPtr git_diff_num_deltas(DiffSafeHandle diff);
[DllImport(libgit2)]
internal static extern IntPtr git_diff_get_delta(DiffSafeHandle diff, UIntPtr idx);
[DllImport(libgit2)]
internal static extern int git_libgit2_features();
[DllImport(libgit2)]
internal static extern int git_graph_ahead_behind(out UIntPtr ahead, out UIntPtr behind, RepositorySafeHandle repo, ref GitOid one, ref GitOid two);
[DllImport(libgit2)]
internal static extern int git_graph_descendant_of(
RepositorySafeHandle repo,
ref GitOid commit,
ref GitOid ancestor);
[DllImport(libgit2)]
internal static extern int git_ignore_add_rule(
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof (StrictUtf8Marshaler))] string rules);
[DllImport(libgit2)]
internal static extern int git_ignore_clear_internal_rules(RepositorySafeHandle repo);
[DllImport(libgit2)]
internal static extern int git_ignore_path_is_ignored(
out int ignored,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath path);
[DllImport(libgit2)]
internal static extern int git_index_add_bypath(
IndexSafeHandle index,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath path);
[DllImport(libgit2)]
internal static extern int git_index_add(
IndexSafeHandle index,
GitIndexEntry entry);
[DllImport(libgit2)]
internal static extern int git_index_conflict_get(
out IndexEntrySafeHandle ancestor,
out IndexEntrySafeHandle ours,
out IndexEntrySafeHandle theirs,
IndexSafeHandle index,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath path);
[DllImport(libgit2)]
internal static extern UIntPtr git_index_entrycount(IndexSafeHandle index);
[DllImport(libgit2)]
internal static extern int git_index_entry_stage(IndexEntrySafeHandle indexentry);
[DllImport(libgit2)]
internal static extern void git_index_free(IntPtr index);
[DllImport(libgit2)]
internal static extern IndexEntrySafeHandle git_index_get_byindex(IndexSafeHandle index, UIntPtr n);
[DllImport(libgit2)]
internal static extern IndexEntrySafeHandle git_index_get_bypath(
IndexSafeHandle index,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath path,
int stage);
[DllImport(libgit2)]
internal static extern int git_index_has_conflicts(IndexSafeHandle index);
[DllImport(libgit2)]
internal static extern uint git_index_name_entrycount(IndexSafeHandle handle);
[DllImport(libgit2)]
internal static extern IndexNameEntrySafeHandle git_index_name_get_byindex(IndexSafeHandle handle, UIntPtr n);
[DllImport(libgit2)]
internal static extern int git_index_open(
out IndexSafeHandle index,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath indexpath);
[DllImport(libgit2)]
internal static extern int git_index_read(
IndexSafeHandle index,
[MarshalAs(UnmanagedType.Bool)] bool force);
[DllImport(libgit2)]
internal static extern int git_index_remove_bypath(
IndexSafeHandle index,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath path);
[DllImport(libgit2)]
internal static extern uint git_index_reuc_entrycount(IndexSafeHandle handle);
[DllImport(libgit2)]
internal static extern IndexReucEntrySafeHandle git_index_reuc_get_byindex(IndexSafeHandle handle, UIntPtr n);
[DllImport(libgit2)]
internal static extern IndexReucEntrySafeHandle git_index_reuc_get_bypath(
IndexSafeHandle handle,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictFilePathMarshaler))] FilePath path);
[DllImport(libgit2)]
internal static extern int git_index_write(IndexSafeHandle index);
[DllImport(libgit2)]
internal static extern int git_index_write_tree(out GitOid treeOid, IndexSafeHandle index);
[DllImport(libgit2)]
internal static extern int git_index_read_tree(IndexSafeHandle index, GitObjectSafeHandle tree);
[DllImport(libgit2)]
internal static extern int git_index_clear(IndexSafeHandle index);
[DllImport(libgit2)]
internal static extern int git_merge_base_many(
out GitOid mergeBase,
RepositorySafeHandle repo,
int length,
[In] GitOid[] input_array);
[DllImport(libgit2)]
internal static extern int git_merge_base_octopus(
out GitOid mergeBase,
RepositorySafeHandle repo,
int length,
[In] GitOid[] input_array);
[DllImport(libgit2)]
internal static extern int git_annotated_commit_from_ref(
out GitAnnotatedCommitHandle annotatedCommit,
RepositorySafeHandle repo,
ReferenceSafeHandle reference);
[DllImport(libgit2)]
internal static extern int git_annotated_commit_from_fetchhead(
out GitAnnotatedCommitHandle annotatedCommit,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string branch_name,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string remote_url,
ref GitOid oid);
[DllImport(libgit2)]
internal static extern int git_annotated_commit_from_revspec(
out GitAnnotatedCommitHandle annotatedCommit,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string revspec);
[DllImport(libgit2)]
internal static extern int git_annotated_commit_lookup(
out GitAnnotatedCommitHandle annotatedCommit,
RepositorySafeHandle repo,
ref GitOid id);
[DllImport(libgit2)]
internal static extern OidSafeHandle git_annotated_commit_id(
GitAnnotatedCommitHandle annotatedCommit);
[DllImport(libgit2)]
internal static extern int git_merge(
RepositorySafeHandle repo,
[In] IntPtr[] their_heads,
UIntPtr their_heads_len,
ref GitMergeOpts merge_opts,
ref GitCheckoutOpts checkout_opts);
[DllImport(libgit2)]
internal static extern int git_merge_trees(
out IndexSafeHandle index,
RepositorySafeHandle repo,
GitObjectSafeHandle ancestor_tree,
GitObjectSafeHandle our_tree,
GitObjectSafeHandle their_tree,
ref GitMergeOpts merge_opts);
[DllImport(libgit2)]
internal static extern int git_merge_analysis(
out GitMergeAnalysis status_out,
out GitMergePreference preference_out,
RepositorySafeHandle repo,
[In] IntPtr[] their_heads,
int their_heads_len);
[DllImport(libgit2)]
internal static extern void git_annotated_commit_free(
IntPtr merge_head);
[DllImport(libgit2)]
internal static extern int git_message_prettify(
GitBuf buf,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string message,
[MarshalAs(UnmanagedType.Bool)] bool strip_comments,
sbyte comment_char);
[DllImport(libgit2)]
internal static extern int git_note_create(
out GitOid noteOid,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string notes_ref,
SignatureSafeHandle author,
SignatureSafeHandle committer,
ref GitOid oid,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string note,
int force);
[DllImport(libgit2)]
internal static extern void git_note_free(IntPtr note);
[DllImport(libgit2)]
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))]
internal static extern string git_note_message(NoteSafeHandle note);
[DllImport(libgit2)]
internal static extern OidSafeHandle git_note_id(NoteSafeHandle note);
[DllImport(libgit2)]
internal static extern int git_note_read(
out NoteSafeHandle note,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string notes_ref,
ref GitOid oid);
[DllImport(libgit2)]
internal static extern int git_note_remove(
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string notes_ref,
SignatureSafeHandle author,
SignatureSafeHandle committer,
ref GitOid oid);
[DllImport(libgit2)]
internal static extern int git_note_default_ref(
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))] out string notes_ref,
RepositorySafeHandle repo);
internal delegate int git_note_foreach_cb(
ref GitOid blob_id,
ref GitOid annotated_object_id,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_note_foreach(
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string notes_ref,
git_note_foreach_cb cb,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_odb_add_backend(ObjectDatabaseSafeHandle odb, IntPtr backend, int priority);
[DllImport(libgit2)]
internal static extern IntPtr git_odb_backend_malloc(IntPtr backend, UIntPtr len);
[DllImport(libgit2)]
internal static extern int git_odb_exists(ObjectDatabaseSafeHandle odb, ref GitOid id);
internal delegate int git_odb_foreach_cb(
IntPtr id,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_odb_foreach(
ObjectDatabaseSafeHandle odb,
git_odb_foreach_cb cb,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_odb_open_wstream(out OdbStreamSafeHandle stream, ObjectDatabaseSafeHandle odb, UIntPtr size, GitObjectType type);
[DllImport(libgit2)]
internal static extern void git_odb_free(IntPtr odb);
[DllImport(libgit2)]
internal static extern int git_odb_read_header(out UIntPtr len_out, out GitObjectType type, ObjectDatabaseSafeHandle odb, ref GitOid id);
[DllImport(libgit2)]
internal static extern void git_object_free(IntPtr obj);
[DllImport(libgit2)]
internal static extern int git_odb_stream_write(OdbStreamSafeHandle Stream, IntPtr Buffer, UIntPtr len);
[DllImport(libgit2)]
internal static extern int git_odb_stream_finalize_write(out GitOid id, OdbStreamSafeHandle stream);
[DllImport(libgit2)]
internal static extern void git_odb_stream_free(IntPtr stream);
[DllImport(libgit2)]
internal static extern OidSafeHandle git_object_id(GitObjectSafeHandle obj);
[DllImport(libgit2)]
internal static extern int git_object_lookup(out GitObjectSafeHandle obj, RepositorySafeHandle repo, ref GitOid id, GitObjectType type);
[DllImport(libgit2)]
internal static extern int git_object_peel(
out GitObjectSafeHandle peeled,
GitObjectSafeHandle obj,
GitObjectType type);
[DllImport(libgit2)]
internal static extern int git_object_short_id(
GitBuf buf,
GitObjectSafeHandle obj);
[DllImport(libgit2)]
internal static extern GitObjectType git_object_type(GitObjectSafeHandle obj);
[DllImport(libgit2)]
internal static extern int git_patch_from_diff(out PatchSafeHandle patch, DiffSafeHandle diff, UIntPtr idx);
[DllImport(libgit2)]
internal static extern int git_patch_print(PatchSafeHandle patch, git_diff_line_cb print_cb, IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_patch_line_stats(
out UIntPtr total_context,
out UIntPtr total_additions,
out UIntPtr total_deletions,
PatchSafeHandle patch);
[DllImport(libgit2)]
internal static extern void git_patch_free(IntPtr patch);
/* Push network progress notification function */
internal delegate int git_push_transfer_progress(uint current, uint total, UIntPtr bytes, IntPtr payload);
internal delegate int git_packbuilder_progress(int stage, uint current, uint total, IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_reference_create(
out ReferenceSafeHandle reference,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string name,
ref GitOid oid,
[MarshalAs(UnmanagedType.Bool)] bool force,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string log_message);
[DllImport(libgit2)]
internal static extern int git_reference_symbolic_create(
out ReferenceSafeHandle reference,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string name,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string target,
[MarshalAs(UnmanagedType.Bool)] bool force,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string log_message);
internal delegate int ref_glob_callback(
IntPtr reference_name,
IntPtr payload);
[DllImport(libgit2)]
internal static extern int git_reference_foreach_glob(
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string glob,
ref_glob_callback callback,
IntPtr payload);
[DllImport(libgit2)]
internal static extern void git_reference_free(IntPtr reference);
[DllImport(libgit2)]
internal static extern int git_reference_is_valid_name(
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string refname);
[DllImport(libgit2)]
internal static extern int git_reference_list(out GitStrArray array, RepositorySafeHandle repo);
[DllImport(libgit2)]
internal static extern int git_reference_lookup(
out ReferenceSafeHandle reference,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string name);
[DllImport(libgit2)]
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))]
internal static extern string git_reference_name(ReferenceSafeHandle reference);
[DllImport(libgit2)]
internal static extern int git_reference_remove(
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string name);
[DllImport(libgit2)]
internal static extern OidSafeHandle git_reference_target(ReferenceSafeHandle reference);
[DllImport(libgit2)]
internal static extern int git_reference_rename(
out ReferenceSafeHandle ref_out,
ReferenceSafeHandle reference,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string newName,
[MarshalAs(UnmanagedType.Bool)] bool force,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string log_message);
[DllImport(libgit2)]
internal static extern int git_reference_set_target(
out ReferenceSafeHandle ref_out,
ReferenceSafeHandle reference,
ref GitOid id,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string log_message);
[DllImport(libgit2)]
internal static extern int git_reference_symbolic_set_target(
out ReferenceSafeHandle ref_out,
ReferenceSafeHandle reference,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string target,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string log_message);
[DllImport(libgit2)]
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))]
internal static extern string git_reference_symbolic_target(ReferenceSafeHandle reference);
[DllImport(libgit2)]
internal static extern GitReferenceType git_reference_type(ReferenceSafeHandle reference);
[DllImport(libgit2)]
internal static extern int git_reference_ensure_log(
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof (StrictUtf8Marshaler))] string refname);
[DllImport(libgit2)]
internal static extern void git_reflog_free(
IntPtr reflog);
[DllImport(libgit2)]
internal static extern int git_reflog_read(
out ReflogSafeHandle ref_out,
RepositorySafeHandle repo,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string name);
[DllImport(libgit2)]
internal static extern UIntPtr git_reflog_entrycount
(ReflogSafeHandle reflog);
[DllImport(libgit2)]
internal static extern ReflogEntrySafeHandle git_reflog_entry_byindex(
ReflogSafeHandle reflog,
UIntPtr idx);
[DllImport(libgit2)]
internal static extern OidSafeHandle git_reflog_entry_id_old(
SafeHandle entry);
[DllImport(libgit2)]
internal static extern OidSafeHandle git_reflog_entry_id_new(
SafeHandle entry);
[DllImport(libgit2)]
internal static extern IntPtr git_reflog_entry_committer(
SafeHandle entry);
[DllImport(libgit2)]
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))]
internal static extern string git_reflog_entry_message(SafeHandle entry);
[DllImport(libgit2)]
internal static extern int git_refspec_rtransform(
GitBuf buf,
GitRefSpecHandle refSpec,
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(StrictUtf8Marshaler))] string name);
[DllImport(libgit2)]
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))]
internal static extern string git_refspec_string(
GitRefSpecHandle refSpec);
[DllImport(libgit2)]
internal static extern RefSpecDirection git_refspec_direction(GitRefSpecHandle refSpec);
[DllImport(libgit2)]
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))]
internal static extern string git_refspec_dst(
GitRefSpecHandle refSpec);
[DllImport(libgit2)]
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof(LaxUtf8NoCleanupMarshaler))]
internal static extern string git_refspec_src(
GitRefSpecHandle refSpec);
[DllImport(libgit2)]
internal static extern bool git_refspec_force(GitRefSpecHandle refSpec);
[DllImport(libgit2)]
internal static extern int git_remote_autotag(RemoteSafeHandle remote);
[DllImport(libgit2)]
internal static extern int git_remote_connect(RemoteSafeHandle remote, GitDirection direction);