mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 12:33:12 +00:00
11 lines
313 B
C#
11 lines
313 B
C#
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);
|
|
}
|
|
}
|