12 lines
300 B
C#
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);
|
|
}
|
|
} |