10 lines
272 B
C#
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;
|
|
}
|
|
} |