We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc44b98 commit e4f1945Copy full SHA for e4f1945
contrib/platform/src/com/sun/jna/platform/win32/WinNT.java
@@ -1181,9 +1181,22 @@ public static class LUID extends Structure {
1181
*/
1182
@FieldOrder({"u"})
1183
public static class LARGE_INTEGER extends Structure implements Comparable<LARGE_INTEGER> {
1184
+
1185
public static class ByReference extends LARGE_INTEGER implements
1186
Structure.ByReference {
1187
}
1188
+ public static class ByValue extends LARGE_INTEGER implements
1189
+ Structure.ByValue {
1190
1191
+ public ByValue() {
1192
+ super();
1193
+ }
1194
1195
+ public ByValue(long value) {
1196
+ super(value);
1197
1198
1199
1200
1201
@FieldOrder({"LowPart", "HighPart"})
1202
public static class LowHigh extends Structure {
0 commit comments