checkpoint collections
This commit is contained in:
16
IAlpmItemsAccessor`1.cs
Normal file
16
IAlpmItemsAccessor`1.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace Foodsoft.Alpm
|
||||
{
|
||||
internal interface IAlpmItemsAccessor<TElement>
|
||||
{
|
||||
SafeAlpmHandle SafeAlpmHandle { get; }
|
||||
public IntPtr GetItems();
|
||||
public int SetItems(IntPtr list);
|
||||
public int AddItem(TElement item);
|
||||
public int RemoveItem(TElement item);
|
||||
public IntPtr FindItem(TElement item);
|
||||
public TElement PtrToItem(IntPtr p);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user