You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
package jopenvr;
|
|
import com.sun.jna.Pointer;
|
|
import com.sun.jna.Structure;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
/**
|
|
* This file was autogenerated by <a href="http://jnaerator.googlecode.com/">JNAerator</a>,<br>
|
|
* a tool written by <a href="http://ochafik.com/">Olivier Chafik</a> that <a href="http://code.google.com/p/jnaerator/wiki/CreditsAndLicense">uses a few opensource projects.</a>.<br>
|
|
* For help, please visit <a href="http://nativelibs4java.googlecode.com/">NativeLibs4Java</a> , <a href="http://rococoa.dev.java.net/">Rococoa</a>, or <a href="http://jna.dev.java.net/">JNA</a>.
|
|
*/
|
|
public class VREvent_Status_t extends Structure {
|
|
public int statusState;
|
|
public VREvent_Status_t() {
|
|
super();
|
|
}
|
|
protected List<String> getFieldOrder() {
|
|
return Arrays.asList("statusState");
|
|
}
|
|
public VREvent_Status_t(int statusState) {
|
|
super();
|
|
this.statusState = statusState;
|
|
}
|
|
public VREvent_Status_t(Pointer peer) {
|
|
super(peer);
|
|
}
|
|
public static class ByReference extends VREvent_Status_t implements Structure.ByReference {
|
|
|
|
};
|
|
public static class ByValue extends VREvent_Status_t implements Structure.ByValue {
|
|
|
|
};
|
|
}
|
|
|