PkmnLibSharp/PkmnLibSharp/Generated/Arbutils/C.cs

20 lines
679 B
C#
Raw Normal View History

2020-07-19 10:33:22 +00:00
// AUTOMATICALLY GENERATED, DO NOT EDIT
using System;
using System.Runtime.InteropServices;
namespace Arbutils.Generated
{
internal static class C
{
/// <returns>const char *</returns>
2020-10-17 16:16:00 +00:00
[DllImport("libArbutils", CallingConvention = CallingConvention.Cdecl, EntryPoint= "Arbutils_C_GetLastException")]
2020-07-19 10:33:22 +00:00
internal static extern IntPtr GetLastException();
/// <param name="callback">Function *</param>
2020-08-18 17:26:39 +00:00
/// <returns>void</returns>
2020-10-17 16:16:00 +00:00
[DllImport("libArbutils", CallingConvention = CallingConvention.Cdecl, EntryPoint= "Arbutils_C_SetSignalCallback")]
internal static extern void SetSignalCallback(IntPtr callback);
2020-08-18 17:26:39 +00:00
2020-07-19 10:33:22 +00:00
}
}