// pep_x.h
typedef struct _PEP_ACPI_REQUEST_CONVERT_TO_BIOS_RESOURCES {
NTSTATUS TranslationStatus;
PPEP_ACPI_RESOURCE InputBuffer;
SIZE_T InputBufferSize;
PVOID OutputBuffer;
SIZE_T OutputBufferSize;
ULONG Flags;
} PEP_ACPI_REQUEST_CONVERT_TO_BIOS_RESOURCES, *PPEP_ACPI_REQUEST_CONVERT_TO_BIOS_RESOURCES;
View the official Windows Driver Kit DDI reference// pepfx.h
typedef struct _PEP_ACPI_REQUEST_CONVERT_TO_BIOS_RESOURCES {
NTSTATUS TranslationStatus;
PPEP_ACPI_RESOURCE InputBuffer;
SIZE_T InputBufferSize;
PVOID OutputBuffer;
SIZE_T OutputBufferSize;
ULONG Flags;
} PEP_ACPI_REQUEST_CONVERT_TO_BIOS_RESOURCES, *PPEP_ACPI_REQUEST_CONVERT_TO_BIOS_RESOURCES;
View the official Windows Driver Kit DDI referenceNo description available.
The PEP_ACPI_REQUEST_CONVERT_TO_BIOS_RESOURCES structure is used in the process of converting ACPI resources to BIOS resources by one of the PEP initialization functions.
TranslationStatusThe result code from the resource translation call.
InputBufferA pointer to a PEP_ACPI_RESOURCE containing the input buffer.
InputBufferSizeThe size of the input buffer.
OutputBufferA pointer to the output buffer containing the translated structure.
OutputBufferSizeThe size of the output buffer.
FlagsThe value contained in the PEP_ACPI_RESOURCE_FLAGS structure.
The PEP_ACPI_REQUEST_CONVERT_TO_BIOS_RESOURCES structure is used in the process of converting ACPI resources to BIOS resources by one of the PEP initialization functions.
TranslationStatusThe result code from the resource translation call.
InputBufferA pointer to a PEP_ACPI_RESOURCE containing the input buffer.
InputBufferSizeThe size of the input buffer.
OutputBufferA pointer to the output buffer containing the translated structure.
OutputBufferSizeThe size of the output buffer.
FlagsThe value contained in the PEP_ACPI_RESOURCE_FLAGS structure.