12 lines
262 B
C#
12 lines
262 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Foodsoft.Alpm
|
|
{
|
|
internal interface ICollectionImpl<TElement>
|
|
{
|
|
public SafeHandle Handle { get; }
|
|
public IntPtr GetItems();
|
|
public TElement PtrToItem(IntPtr p);
|
|
}
|
|
} |