Package org.lwjgl.system.windows
Class LARGE_INTEGER.Buffer
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.CustomBuffer<SELF>
-
- org.lwjgl.system.StructBuffer<LARGE_INTEGER,LARGE_INTEGER.Buffer>
-
- org.lwjgl.system.windows.LARGE_INTEGER.Buffer
-
- All Implemented Interfaces:
java.lang.AutoCloseable,java.lang.Iterable<LARGE_INTEGER>,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
- Enclosing class:
- LARGE_INTEGER
public static class LARGE_INTEGER.Buffer extends org.lwjgl.system.StructBuffer<LARGE_INTEGER,LARGE_INTEGER.Buffer> implements org.lwjgl.system.NativeResource
An array ofLARGE_INTEGERstructs.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longQuadPart()LARGE_INTEGER.BufferQuadPart(long value)Sets the specified value to theQuadPartfield.intu_HighPart()LARGE_INTEGER.Bufferu_HighPart(int value)Sets the specified value to theHighPartfield.intu_LowPart()LARGE_INTEGER.Bufferu_LowPart(int value)Sets the specified value to theLowPartfield.
-
-
-
Constructor Detail
-
Buffer
public Buffer(java.nio.ByteBuffer container)
Creates a newLARGE_INTEGER.Bufferinstance backed by the specified container. Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided byLARGE_INTEGER.SIZEOF, and its mark will be undefined.The created buffer instance holds a strong reference to the container object.
-
Buffer
public Buffer(long address, int cap)
-
-
Method Detail
-
u_LowPart
public int u_LowPart()
- Returns:
- the value of the
u.LowPartfield.
-
u_HighPart
public int u_HighPart()
- Returns:
- the value of the
u.HighPartfield.
-
QuadPart
public long QuadPart()
- Returns:
- the value of the
QuadPartfield.
-
u_LowPart
public LARGE_INTEGER.Buffer u_LowPart(int value)
Sets the specified value to theLowPartfield.
-
u_HighPart
public LARGE_INTEGER.Buffer u_HighPart(int value)
Sets the specified value to theHighPartfield.
-
QuadPart
public LARGE_INTEGER.Buffer QuadPart(long value)
Sets the specified value to theQuadPartfield.
-
-