Class DISPLAY_DEVICE

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class DISPLAY_DEVICE extends Struct<DISPLAY_DEVICE> implements NativeResource

 struct DISPLAY_DEVICE {
     DWORD cb;
     TCHAR DeviceName[32];
     TCHAR DeviceString[128];
     DWORD StateFlags;
     TCHAR DeviceID[128];
     TCHAR DeviceKey[128];
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • CB

      public static final int CB
      The struct member offsets.
    • DEVICENAME

      public static final int DEVICENAME
      The struct member offsets.
    • DEVICESTRING

      public static final int DEVICESTRING
      The struct member offsets.
    • STATEFLAGS

      public static final int STATEFLAGS
      The struct member offsets.
    • DEVICEID

      public static final int DEVICEID
      The struct member offsets.
    • DEVICEKEY

      public static final int DEVICEKEY
      The struct member offsets.
  • Constructor Details

    • DISPLAY_DEVICE

      public DISPLAY_DEVICE(ByteBuffer container)
      Creates a DISPLAY_DEVICE instance at the current position of the specified ByteBuffer container. 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()
      Description copied from class: Struct
      Returns sizeof(struct).
      Specified by:
      sizeof in class Struct<DISPLAY_DEVICE>
    • cb

      public int cb()
      Returns:
      the value of the cb field.
    • DeviceName

      public ByteBuffer DeviceName()
      Returns:
      a ByteBuffer view of the DeviceName field.
    • DeviceNameString

      public String DeviceNameString()
      Returns:
      the null-terminated string stored in the DeviceName field.
    • DeviceString

      public ByteBuffer DeviceString()
      Returns:
      a ByteBuffer view of the DeviceString field.
    • DeviceStringString

      public String DeviceStringString()
      Returns:
      the null-terminated string stored in the DeviceString field.
    • StateFlags

      public int StateFlags()
      Returns:
      the value of the StateFlags field.
    • DeviceID

      public ByteBuffer DeviceID()
      Returns:
      a ByteBuffer view of the DeviceID field.
    • DeviceIDString

      public String DeviceIDString()
      Returns:
      the null-terminated string stored in the DeviceID field.
    • DeviceKey

      public ByteBuffer DeviceKey()
      Returns:
      a ByteBuffer view of the DeviceKey field.
    • DeviceKeyString

      public String DeviceKeyString()
      Returns:
      the null-terminated string stored in the DeviceKey field.
    • cb

      public DISPLAY_DEVICE cb(int value)
      Sets the specified value to the cb field.
    • set

      public DISPLAY_DEVICE set(DISPLAY_DEVICE src)
      Copies the specified struct data to this struct.
      Parameters:
      src - the source struct
      Returns:
      this struct
    • malloc

      public static DISPLAY_DEVICE malloc()
      Returns a new DISPLAY_DEVICE instance allocated with memAlloc. The instance must be explicitly freed.
    • calloc

      public static DISPLAY_DEVICE calloc()
      Returns a new DISPLAY_DEVICE instance allocated with memCalloc. The instance must be explicitly freed.
    • create

      public static DISPLAY_DEVICE create()
      Returns a new DISPLAY_DEVICE instance allocated with BufferUtils.
    • create

      public static DISPLAY_DEVICE create(long address)
      Returns a new DISPLAY_DEVICE instance for the specified memory address.
    • createSafe

      public static @Nullable DISPLAY_DEVICE createSafe(long address)
      Like create, but returns null if address is NULL.
    • malloc

      public static DISPLAY_DEVICE.Buffer malloc(int capacity)
      Returns a new DISPLAY_DEVICE.Buffer instance allocated with memAlloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • calloc

      public static DISPLAY_DEVICE.Buffer calloc(int capacity)
      Returns a new DISPLAY_DEVICE.Buffer instance allocated with memCalloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • create

      public static DISPLAY_DEVICE.Buffer create(int capacity)
      Returns a new DISPLAY_DEVICE.Buffer instance allocated with BufferUtils.
      Parameters:
      capacity - the buffer capacity
    • create

      public static DISPLAY_DEVICE.Buffer create(long address, int capacity)
      Create a DISPLAY_DEVICE.Buffer instance at the specified memory.
      Parameters:
      address - the memory address
      capacity - the buffer capacity
    • createSafe

      public static @Nullable DISPLAY_DEVICE.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
    • malloc

      public static DISPLAY_DEVICE malloc(MemoryStack stack)
      Returns a new DISPLAY_DEVICE instance allocated on the specified MemoryStack.
      Parameters:
      stack - the stack from which to allocate
    • calloc

      public static DISPLAY_DEVICE calloc(MemoryStack stack)
      Returns a new DISPLAY_DEVICE instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      stack - the stack from which to allocate
    • malloc

      public static DISPLAY_DEVICE.Buffer malloc(int capacity, MemoryStack stack)
      Returns a new DISPLAY_DEVICE.Buffer instance allocated on the specified MemoryStack.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • calloc

      public static DISPLAY_DEVICE.Buffer calloc(int capacity, MemoryStack stack)
      Returns a new DISPLAY_DEVICE.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • ncb

      public static int ncb(long struct)
      Unsafe version of cb().
    • nDeviceName

      public static ByteBuffer nDeviceName(long struct)
      Unsafe version of DeviceName().
    • nDeviceNameString

      public static String nDeviceNameString(long struct)
      Unsafe version of DeviceNameString().
    • nDeviceString

      public static ByteBuffer nDeviceString(long struct)
      Unsafe version of DeviceString().
    • nDeviceStringString

      public static String nDeviceStringString(long struct)
      Unsafe version of DeviceStringString().
    • nStateFlags

      public static int nStateFlags(long struct)
      Unsafe version of StateFlags().
    • nDeviceID

      public static ByteBuffer nDeviceID(long struct)
      Unsafe version of DeviceID().
    • nDeviceIDString

      public static String nDeviceIDString(long struct)
      Unsafe version of DeviceIDString().
    • nDeviceKey

      public static ByteBuffer nDeviceKey(long struct)
      Unsafe version of DeviceKey().
    • nDeviceKeyString

      public static String nDeviceKeyString(long struct)
      Unsafe version of DeviceKeyString().
    • ncb

      public static void ncb(long struct, int value)
      Unsafe version of cb.