mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 20:48:38 +00:00
14 lines
381 B
C#
14 lines
381 B
C#
|
using System;
|
||
|
using System.Runtime.InteropServices;
|
||
|
using System.Runtime.Versioning;
|
||
|
|
||
|
namespace ARMeilleure.Native
|
||
|
{
|
||
|
[SupportedOSPlatform("macos")]
|
||
|
public static partial class JitSupportDarwin
|
||
|
{
|
||
|
[LibraryImport("libarmeilleure-jitsupport", EntryPoint = "armeilleure_jit_memcpy")]
|
||
|
public static partial void Copy(IntPtr dst, IntPtr src, ulong n);
|
||
|
}
|
||
|
}
|