typedef struct A {
B* b;
void* args;
int len;
};
typedef struct B {
int obj_type;
};
Java代码
/* 结构体A定义 */ public static A extends Structure {
//构造函数定义 public A() {
super();
}
public A(Pointer _a) {
super(_a);
}
//结构体成员定义 public B.ByReference b;
PointerByReference args;
int len;
//添加2个内部类,分别实现指针类型接口、值类型接口 public static class ByReference extends A implements Structure.ByReference {}
public static class ByValue extends A implements Structure.ByValue{}
//定义取值次序,需要与C/C++中对齐,不然会出现NoSuchFieldError @Override protected List getFieldOrder() {
return Arrays.asList(new String[]{"b", "args", "len"});
}
}
/* 结构体B定义 */ public static B extends Structure {
public B() {
super();
}
public B(Pointer _b) {
super(_b);
}
int obj_type;
public static class ByReference extends B implements Structure.ByReference {}
public static class ByValue extends B implements Structure.ByValue{}
@Override protected List getFieldOrder() {
return Arrays.asList(new String[]{"obj_type"});
}
}
public class testCallbackImpl implements testCallback {
@Override public int invoke(String name) {
System.out.printf("Invoke Callback " + name + " successfully!");
return true;
}
}
test_myFun函数Java端定义:
int testMyFun(Callback cb, String name, int flag);
调用实例:
int rc = testMyFun(new testCallbackImpl(), "helloworld", 1);