I need in JNA to write this method: WriteProcessMemoryFloat. In c# it's written like this
[DllImport("kernel32", EntryPoint = "WriteProcessMemory")]
private static extern float WriteProcessMemoryFloat(int Handle, int Address, ref float Value, int Size, ref int BytesWritten);
But in JNA I don't know how write EntryPoint. Does anyone have any idea how to do this?
質問する
143 次