IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
JNINativeMethod.cs
Go to the documentation of this file.
1using System.Runtime.InteropServices;
2
3namespace IKVM.Runtime.JNI
4{
5
6 [StructLayout(LayoutKind.Sequential)]
7 unsafe struct JNINativeMethod
8 {
9
10 public byte* name;
11 public byte* signature;
12 void* fnPtr;
13
14 }
15
16}