checkpoint

This commit is contained in:
2020-04-29 23:47:06 -04:00
parent 64f7dd4b7d
commit 19a9fc06ba
31 changed files with 678 additions and 360 deletions

View File

@@ -3,9 +3,9 @@ using System.Runtime.InteropServices;
namespace Foodsoft.Alpm
{
internal interface IItemsReader<out TElement, out THandle> where THandle : SafeHandle
internal interface ICollectionImpl<TElement>
{
public THandle Handle { get; }
public SafeHandle Handle { get; }
public IntPtr GetItems();
public TElement PtrToItem(IntPtr p);
}