net.gdface.cassdk.jna.EF_Param Maven / Gradle / Ivy
package net.gdface.cassdk.jna;
import com.sun.jna.Pointer;
import com.sun.jna.Structure;
import java.util.Arrays;
import java.util.List;
/**
* native declaration : include\THFeature_i.h:25
* This file was autogenerated by JNAerator,
* a tool written by Olivier Chafik that uses a few opensource projects..
* For help, please visit NativeLibs4Java , Rococoa, or JNA.
*/
public class EF_Param extends Structure {
/** device id for GPU device.eg:0,1,2,3..... */
public int nDeviceID;
public EF_Param() {
super();
}
protected List > getFieldOrder() {
return Arrays.asList("nDeviceID");
}
/** @param nDeviceID device id for GPU device.eg:0,1,2,3..... */
public EF_Param(int nDeviceID) {
super();
this.nDeviceID = nDeviceID;
}
public EF_Param(Pointer peer) {
super(peer);
}
public static class ByReference extends EF_Param implements Structure.ByReference {
};
public static class ByValue extends EF_Param implements Structure.ByValue {
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy