11 lines
240 B
C#
11 lines
240 B
C#
using System;
|
|
|
|
namespace Foodsoft.Alpm
|
|
{
|
|
internal interface IReadOnlyItemsAccessor<out TElement>
|
|
{
|
|
SafeAlpmHandle SafeAlpmHandle { get; }
|
|
public IntPtr GetItems();
|
|
public TElement PtrToItem(IntPtr p);
|
|
}
|
|
} |