add bionic nativeaot support

This commit is contained in:
Emmanuel Hansen 2023-06-25 17:33:35 +00:00
parent ad0f9a7fc7
commit 4d06f19fe7
45 changed files with 2046 additions and 27 deletions

View file

@ -0,0 +1,12 @@
using LibRyujinx.Jni.Pointers;
using System;
namespace LibRyujinx.Jni.Values
{
public readonly struct JNativeMethod
{
internal CCharSequence Name { get; init; }
internal CCharSequence Signature { get; init; }
internal IntPtr Pointer { get; init; }
}
}