// acpiioct.h
typedef struct _ACPI_EVAL_INPUT_BUFFER_SIMPLE_STRING_V2 {
ULONG Signature;
union {
UCHAR MethodName[4];
ULONG MethodNameAsUlong;
} DUMMYUNIONNAME;
ULONG StringLength;
UCHAR String[ANYSIZE_ARRAY];
} ACPI_EVAL_INPUT_BUFFER_SIMPLE_STRING_V2, *PACPI_EVAL_INPUT_BUFFER_SIMPLE_STRING_V2;
View the official Windows Driver Kit DDI referenceNo description available.
This topic describes the ACPI_EVAL_INPUT_BUFFER_SIMPLE_STRING_V2 structure.
SignatureDefines the ULONG member Signature.
DUMMYUNIONNAMEDefines the method name member of DUMMYUNIONNAME.
DUMMYUNIONNAME.MethodNameDefines the method name member of DUMMYUNIONNAME.MethodName.
DUMMYUNIONNAME.MethodNameAsUlongDefines the method name member of DUMMYUNIONNAME.MethodNameAsUlong.
StringLengthDefines the ULONG member StringLength.
StringDefines the UCHAR member String[ANYSIZE_ARRAY].