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