2023-01-10 19:16:59 -03:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using System.Runtime.Versioning;
|
|
|
|
|
|
|
|
|
|
namespace ARMeilleure.Native
|
|
|
|
|
{
|
|
|
|
|
[SupportedOSPlatform("macos")]
|
2024-01-20 11:11:28 -03:00
|
|
|
static partial class JitSupportDarwin
|
2023-01-10 19:16:59 -03:00
|
|
|
{
|
|
|
|
|
[LibraryImport("libarmeilleure-jitsupport", EntryPoint = "armeilleure_jit_memcpy")]
|
2024-10-26 08:46:41 -05:00
|
|
|
public static partial void Copy(nint dst, nint src, ulong n);
|
2023-01-10 19:16:59 -03:00
|
|
|
}
|
|
|
|
|
}
|