20 lines
656 B
C#
20 lines
656 B
C#
// AUTOMATICALLY GENERATED, DO NOT EDIT
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Pkmnlib.Generated
|
|
{
|
|
internal static class MiscLibrary
|
|
{
|
|
/// <returns>MiscLibrary *</returns>
|
|
[DllImport("pkmnLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "PkmnLib_MiscLibrary_Construct")]
|
|
internal static extern IntPtr Construct();
|
|
|
|
/// <param name="p">MiscLibrary *</param>
|
|
/// <returns>void</returns>
|
|
[DllImport("pkmnLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "PkmnLib_MiscLibrary_Destruct")]
|
|
internal static extern void Destruct(IntPtr p);
|
|
|
|
}
|
|
}
|