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