我必须使用在第三方dll中定义的c函数
__declspec(dllimport) Init(DWORD id,HANDLE* handle);
JNAerate非常友好,可以生成以下方法签名....
public static native int Init(int id,PointerByReference handle);
并将其用作
public interface Dll extends Library
{
public Dll _dll = (Dll)Native.LoadLibrary("dll_name");
public int Init(int id,PointerByReference handle);
}
public void init()
{
long hwnd = 0;
LongByReference lbr = new LongByRefrence(hwnd);
PointerByReference pbr = new PointerByReference();
pbr.setPointer(lbr.getPointer());
int ret = _dll.init(0x01,pbr);
}
但这会导致JVM崩溃..有人可以告诉我在JNA中映射void **的适当方法。
答案 0 :(得分:0)
PointerByReference.getValue()
为您提供被叫方“返回”的值。这是您可以用来初始化HANDLE值的值。无需“初始化”PointerByReference
。
public void init()
{
PointerByReference pbr = new PointerByReference();
int ret = _dll.init(0x01,pbr);
HANDLE handle = new HANDLE(pbr.getValue());
}