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_INTEGER
structs.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
QuadPart()
LARGE_INTEGER.Buffer
QuadPart(long value)
Sets the specified value to theQuadPart
field.int
u_HighPart()
LARGE_INTEGER.Buffer
u_HighPart(int value)
Sets the specified value to theHighPart
field.int
u_LowPart()
LARGE_INTEGER.Buffer
u_LowPart(int value)
Sets the specified value to theLowPart
field.
-
-
-
Constructor Detail
-
Buffer
public Buffer(java.nio.ByteBuffer container)
Creates a newLARGE_INTEGER.Buffer
instance 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.LowPart
field.
-
u_HighPart
public int u_HighPart()
- Returns:
- the value of the
u.HighPart
field.
-
QuadPart
public long QuadPart()
- Returns:
- the value of the
QuadPart
field.
-
u_LowPart
public LARGE_INTEGER.Buffer u_LowPart(int value)
Sets the specified value to theLowPart
field.
-
u_HighPart
public LARGE_INTEGER.Buffer u_HighPart(int value)
Sets the specified value to theHighPart
field.
-
QuadPart
public LARGE_INTEGER.Buffer QuadPart(long value)
Sets the specified value to theQuadPart
field.
-
-