checkpoint for real

This commit is contained in:
2020-04-27 12:34:56 -04:00
parent 6ed92261ec
commit c1618deb83
31 changed files with 1429 additions and 626 deletions

View File

@@ -2,7 +2,7 @@ using System;
namespace Foodsoft.Alpm
{
internal interface IAlpmItemsAccessor<TElement>
internal interface IItemsAccessor<TElement>
{
SafeAlpmHandle SafeAlpmHandle { get; }
public IntPtr GetItems();
@@ -12,5 +12,4 @@ namespace Foodsoft.Alpm
public IntPtr FindItem(TElement item);
public TElement PtrToItem(IntPtr p);
}
}