// acpiioct.h
typedef struct _ACPI_GET_DEVICE_SPECIFIC_DATA {
ULONG Signature;
GUID Section;
ULONG PropertyNameLength;
UCHAR PropertyName[ANYSIZE_ARRAY];
} ACPI_GET_DEVICE_SPECIFIC_DATA, *PACPI_GET_DEVICE_SPECIFIC_DATA;
View the official Windows Driver Kit DDI referenceNo description available.
The ACPI_GET_DEVICE_SPECIFIC_DATA structure contains input arguments for the IOCTL_ACPI_GET_DEVICE_SPECIFIC_DATA control method.
SignatureA unique identifier for the IOCTL.
SectionA GUID specified by the caller.
PropertyNameLengthThe length of the property name.
PropertyNameSpecifies the property name. If not specified, the PropertyNameLength and the PropertyName are returned. If a PropertyName is specified, only the value of that PropertyName is returned.