Files
DotNetAlpm/Alpm/IItemsReader`2.cs
2020-04-29 13:21:13 -04:00

12 lines
300 B
C#

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