PkmnLibSharp/PkmnLibSharp/Generated/Pkmnlib/MiscLibrary.cs

20 lines
662 B
C#
Raw Normal View History

2020-05-03 09:38:49 +00:00
// AUTOMATICALLY GENERATED, DO NOT EDIT
2020-05-02 17:54:07 +00:00
using System;
using System.Runtime.InteropServices;
namespace Pkmnlib.Generated
{
internal static class MiscLibrary
{
/// <returns>MiscLibrary *</returns>
2020-10-17 16:16:00 +00:00
[DllImport("libpkmnLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "PkmnLib_MiscLibrary_Construct")]
2020-05-02 17:54:07 +00:00
internal static extern IntPtr Construct();
/// <param name="p">MiscLibrary *</param>
/// <returns>void</returns>
2020-10-17 16:16:00 +00:00
[DllImport("libpkmnLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "PkmnLib_MiscLibrary_Destruct")]
2020-05-02 17:54:07 +00:00
internal static extern void Destruct(IntPtr p);
}
}