public interface Fwlib extends Library{
public static class Focas1 extends Structure{
public short dummy;
public short type;
public long[] data=new long[3];
public static class ByReference extends Focas1 implements Structure.ByReference { }
public static class ByValue extends Focas1 implements Structure.ByValue{ }
protected List getFieldOrder() {
return Arrays.asList(new String[]{"dummy", "type", "data"});
}
} //接口