// pep_x.h
typedef union _PEP_ACPI_OBJECT_NAME {
UCHAR Name[4];
ULONG NameAsUlong;
} PEP_ACPI_OBJECT_NAME, *PPEP_ACPI_OBJECT_NAME;
View the official Windows Driver Kit DDI reference// pepfx.h
typedef union _PEP_ACPI_OBJECT_NAME {
UCHAR Name[4];
ULONG NameAsUlong;
} PEP_ACPI_OBJECT_NAME, *PPEP_ACPI_OBJECT_NAME;
View the official Windows Driver Kit DDI referenceNo description available.
The PEP_ACPI_OBJECT_NAME union contains the four-character name of an ACPI object.
NameThe object name stored as an array of four 8-bit unsigned characters.
NameAsUlongThe object name stored as a single 32-bit unsigned integer value.
The Name member of the PEP_ACPI_OBJECT_NAME_WITH_TYPE structure is a PEP_ACPI_OBJECT_NAME union. Also, the Name member of the PEP_ACPI_QUERY_OBJECT_INFORMATION structure is a PEP_ACPI_OBJECT_NAME union.
The PEP_ACPI_OBJECT_NAME union contains the four-character name of an ACPI object.
NameThe object name stored as an array of four 8-bit unsigned characters.
NameAsUlongThe object name stored as a single 32-bit unsigned integer value.
The Name member of the PEP_ACPI_OBJECT_NAME_WITH_TYPE structure is a PEP_ACPI_OBJECT_NAME union. Also, the Name member of the PEP_ACPI_QUERY_OBJECT_INFORMATION structure is a PEP_ACPI_OBJECT_NAME union.