PEP_ACPI_REQUEST_CONVERT_TO_BIOS_RESOURCES structure (pep_x.h)

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.

Syntax

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;

Members

TranslationStatus

The result code from the resource translation call.

InputBuffer

A pointer to a PEP_ACPI_RESOURCE containing the input buffer.

InputBufferSize

The size of the input buffer.

OutputBuffer

A pointer to the output buffer containing the translated structure.

OutputBufferSize

The size of the output buffer.

Flags

The value contained in the PEP_ACPI_RESOURCE_FLAGS structure.

Requirements

Requirement Value
Minimum supported client Supported starting with Windows 10.
Header pep_x.h (include Pep_x.h)

See also

PEP initialization functions

PEP_ACPI_RESOURCE

PEP_ACPI_RESOURCE_FLAGS