Files
DotNetAlpm/Alpm/Wrapper.cs
2020-04-29 13:21:13 -04:00

10 lines
272 B
C#

using System;
namespace Foodsoft.Alpm
{
internal static class Wrapper
{
internal static unsafe IntPtr ListNext(IntPtr list) => ((alpm_list_t*) list)->next;
internal static unsafe IntPtr ListData(IntPtr list) => ((alpm_list_t*) list)->data;
}
}