1
0
mirror of synced 2025-01-10 13:21:51 +01:00

12 lines
313 B
C#
Raw Normal View History

2019-09-17 17:42:39 -04:00
using System;
using System.Runtime.InteropServices;
namespace Toolbox.Library.IO
{
public class MarioTennisCmp32
{
[DllImport("Lib/LibTennis32.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern void DecompressBuffer(IntPtr output, IntPtr input, uint len);
}
}