Package org.lwjgl.system.windows
Class DISPLAY_DEVICE
java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<DISPLAY_DEVICE>
org.lwjgl.system.windows.DISPLAY_DEVICE
- All Implemented Interfaces:
AutoCloseable,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
public class DISPLAY_DEVICE
extends org.lwjgl.system.Struct<DISPLAY_DEVICE>
implements org.lwjgl.system.NativeResource
Receives information about the display device specified by the
iDevNum parameter of the User32.EnumDisplayDevices(java.nio.ByteBuffer, int, org.lwjgl.system.windows.DISPLAY_DEVICE, int) function.
The four string members are set based on the parameters passed to EnumDisplayDevices. If the lpDevice param is NULL, then
DISPLAY_DEVICE is filled in with information about the display adapter(s). If it is a valid device name, then it is filled in with information
about the monitor(s) for that device.
Layout
struct DISPLAY_DEVICE {
DWORD cb();
TCHAR DeviceName()[32];
TCHAR DeviceString()[128];
DWORD StateFlags();
TCHAR DeviceID()[128];
TCHAR DeviceKey()[128];
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
org.lwjgl.system.Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
org.lwjgl.system.Pointer.Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe struct alignment in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct size in bytes.static final intThe struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionDISPLAY_DEVICE(ByteBuffer container) Creates aDISPLAY_DEVICEinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic DISPLAY_DEVICEcalloc()Returns a newDISPLAY_DEVICEinstance allocated withmemCalloc.static DISPLAY_DEVICE.Buffercalloc(int capacity) Returns a newDISPLAY_DEVICE.Bufferinstance allocated withmemCalloc.static DISPLAY_DEVICE.Buffercalloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newDISPLAY_DEVICE.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static DISPLAY_DEVICEcalloc(org.lwjgl.system.MemoryStack stack) Returns a newDISPLAY_DEVICEinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static DISPLAY_DEVICEDeprecated.static DISPLAY_DEVICE.BuffercallocStack(int capacity) Deprecated.static DISPLAY_DEVICE.BuffercallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static DISPLAY_DEVICEcallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.intcb()size, in bytes, of theDISPLAY_DEVICEstructure.cb(int value) Sets the specified value to thecb()field.static DISPLAY_DEVICEcreate()Returns a newDISPLAY_DEVICEinstance allocated withBufferUtils.static DISPLAY_DEVICE.Buffercreate(int capacity) Returns a newDISPLAY_DEVICE.Bufferinstance allocated withBufferUtils.static DISPLAY_DEVICEcreate(long address) Returns a newDISPLAY_DEVICEinstance for the specified memory address.static DISPLAY_DEVICE.Buffercreate(long address, int capacity) Create aDISPLAY_DEVICE.Bufferinstance at the specified memory.static @Nullable DISPLAY_DEVICEcreateSafe(long address) static @Nullable DISPLAY_DEVICE.BuffercreateSafe(long address, int capacity) DeviceID()not usednot usedreservedreservedan array of characters identifying the device name.an array of characters identifying the device name.an array of characters containing the device context string.an array of characters containing the device context string.static DISPLAY_DEVICEmalloc()Returns a newDISPLAY_DEVICEinstance allocated withmemAlloc.static DISPLAY_DEVICE.Buffermalloc(int capacity) Returns a newDISPLAY_DEVICE.Bufferinstance allocated withmemAlloc.static DISPLAY_DEVICE.Buffermalloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newDISPLAY_DEVICE.Bufferinstance allocated on the specifiedMemoryStack.static DISPLAY_DEVICEmalloc(org.lwjgl.system.MemoryStack stack) Returns a newDISPLAY_DEVICEinstance allocated on the specifiedMemoryStack.static DISPLAY_DEVICEDeprecated.static DISPLAY_DEVICE.BuffermallocStack(int capacity) Deprecated.static DISPLAY_DEVICE.BuffermallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static DISPLAY_DEVICEmallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.static intncb(long struct) Unsafe version ofcb().static voidncb(long struct, int value) Unsafe version ofcb.static ByteBuffernDeviceID(long struct) Unsafe version ofDeviceID().static StringnDeviceIDString(long struct) Unsafe version ofDeviceIDString().static ByteBuffernDeviceKey(long struct) Unsafe version ofDeviceKey().static StringnDeviceKeyString(long struct) Unsafe version ofDeviceKeyString().static ByteBuffernDeviceName(long struct) Unsafe version ofDeviceName().static StringnDeviceNameString(long struct) Unsafe version ofDeviceNameString().static ByteBuffernDeviceString(long struct) Unsafe version ofDeviceString().static StringnDeviceStringString(long struct) Unsafe version ofDeviceStringString().static intnStateFlags(long struct) Unsafe version ofStateFlags().set(DISPLAY_DEVICE src) Copies the specified struct data to this struct.intsizeof()intdevice state flagsMethods inherited from class org.lwjgl.system.Struct
clear, free, isNull, validate, validateMethods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toStringMethods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
CB
public static final int CBThe struct member offsets. -
DEVICENAME
public static final int DEVICENAMEThe struct member offsets. -
DEVICESTRING
public static final int DEVICESTRINGThe struct member offsets. -
STATEFLAGS
public static final int STATEFLAGSThe struct member offsets. -
DEVICEID
public static final int DEVICEIDThe struct member offsets. -
DEVICEKEY
public static final int DEVICEKEYThe struct member offsets.
-
-
Constructor Details
-
DISPLAY_DEVICE
Creates aDISPLAY_DEVICEinstance at the current position of the specifiedByteBuffercontainer. Changes to the buffer's content will be visible to the struct instance and vice versa.The created instance holds a strong reference to the container object.
-
-
Method Details
-
sizeof
public int sizeof()- Specified by:
sizeofin classorg.lwjgl.system.Struct<DISPLAY_DEVICE>
-
cb
public int cb()size, in bytes, of theDISPLAY_DEVICEstructure. This must be initialized prior to callingUser32.EnumDisplayDevices(java.nio.ByteBuffer, int, org.lwjgl.system.windows.DISPLAY_DEVICE, int). -
DeviceName
an array of characters identifying the device name. This is either the adapter device or the monitor device. -
DeviceNameString
an array of characters identifying the device name. This is either the adapter device or the monitor device. -
DeviceString
an array of characters containing the device context string. This is either a description of the display adapter or of the display monitor. -
DeviceStringString
an array of characters containing the device context string. This is either a description of the display adapter or of the display monitor. -
StateFlags
public int StateFlags()device state flags -
DeviceID
not used -
DeviceIDString
not used -
DeviceKey
reserved -
DeviceKeyString
reserved -
cb
Sets the specified value to thecb()field. -
set
Copies the specified struct data to this struct.- Parameters:
src- the source struct- Returns:
- this struct
-
malloc
Returns a newDISPLAY_DEVICEinstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newDISPLAY_DEVICEinstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newDISPLAY_DEVICEinstance allocated withBufferUtils. -
create
Returns a newDISPLAY_DEVICEinstance for the specified memory address. -
createSafe
-
malloc
Returns a newDISPLAY_DEVICE.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newDISPLAY_DEVICE.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newDISPLAY_DEVICE.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aDISPLAY_DEVICE.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
mallocStack
@Deprecated public static DISPLAY_DEVICE.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
@Deprecated public static DISPLAY_DEVICE.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
malloc
Returns a newDISPLAY_DEVICEinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newDISPLAY_DEVICEinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
Returns a newDISPLAY_DEVICE.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
Returns a newDISPLAY_DEVICE.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
ncb
public static int ncb(long struct) Unsafe version ofcb(). -
nDeviceName
Unsafe version ofDeviceName(). -
nDeviceNameString
Unsafe version ofDeviceNameString(). -
nDeviceString
Unsafe version ofDeviceString(). -
nDeviceStringString
Unsafe version ofDeviceStringString(). -
nStateFlags
public static int nStateFlags(long struct) Unsafe version ofStateFlags(). -
nDeviceID
Unsafe version ofDeviceID(). -
nDeviceIDString
Unsafe version ofDeviceIDString(). -
nDeviceKey
Unsafe version ofDeviceKey(). -
nDeviceKeyString
Unsafe version ofDeviceKeyString(). -
ncb
public static void ncb(long struct, int value) Unsafe version ofcb.
-