forked from MeloNX/MeloNX
13 lines
292 B
C#
13 lines
292 B
C#
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; }
|
|
}
|
|
}
|