Skip to content

Commit e4f1945

Browse files
committed
Update WinNT.java
1 parent dc44b98 commit e4f1945

File tree

1 file changed

+13
-0
lines changed
  • contrib/platform/src/com/sun/jna/platform/win32

1 file changed

+13
-0
lines changed

contrib/platform/src/com/sun/jna/platform/win32/WinNT.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1181,9 +1181,22 @@ public static class LUID extends Structure {
11811181
*/
11821182
@FieldOrder({"u"})
11831183
public static class LARGE_INTEGER extends Structure implements Comparable<LARGE_INTEGER> {
1184+
11841185
public static class ByReference extends LARGE_INTEGER implements
11851186
Structure.ByReference {
11861187
}
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+
}
11871200

11881201
@FieldOrder({"LowPart", "HighPart"})
11891202
public static class LowHigh extends Structure {

0 commit comments

Comments
 (0)