PkmnLibSharp/PkmnLibSharp/Generated/Creaturelib/HistoryElement.cs

21 lines
800 B
C#

// AUTOMATICALLY GENERATED, DO NOT EDIT
using System;
using System.Runtime.InteropServices;
namespace Creaturelib.Generated
{
internal static class HistoryElement
{
/// <param name="p">const HistoryElement *</param>
/// <returns>HistoryElementKind</returns>
[DllImport("CreatureLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_HistoryElement_GetKind")]
internal static extern HistoryElementKind GetKind(IntPtr p);
/// <param name="p">const HistoryElement *</param>
/// <returns>const HistoryElement *</returns>
[DllImport("CreatureLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_HistoryElement_GetPrevious")]
internal static extern IntPtr GetPrevious(IntPtr p);
}
}