// pep_x.h
VOID PEP_ACPI_INITIALIZE_MEMORY_RESOURCE(
[in] UCHAR ReadWrite,
[in] ULONG MinimumAddress,
[in] ULONG MaximumAddress,
[in] ULONG Alignment,
[in] ULONG MemorySize,
[out] PPEP_ACPI_RESOURCE Resource
);
View the official Windows Driver Kit DDI reference// pepfx.h
VOID PEP_ACPI_INITIALIZE_MEMORY_RESOURCE(
[in] UCHAR ReadWrite,
[in] ULONG MinimumAddress,
[in] ULONG MaximumAddress,
[in] ULONG Alignment,
[in] ULONG MemorySize,
[out] PPEP_ACPI_RESOURCE Resource
);
View the official Windows Driver Kit DDI referenceNo description available.
The PEP_ACPI_INITIALIZE_MEMORY_RESOURCE function initializes a platform extension plug-in's (PEP) PEP_ACPI_IO_MEMORY_RESOURCE structure.
ReadWrite [in]If true, indicates that the resource is read/write. Otherwise, it's read-only.
MinimumAddress [in]Specifies the minimum acceptable starting address for the IO range.
MaximumAddress [in]Specifies the maximum acceptable starting address for the IO range.
Alignment [in]Specifies the alignment granularity for the memory address assigned.
MemorySize [in]Specifies the number of bytes in the memory range.
Resource [out]A pointer to the resource. The structure behind the pointer is of type PEP_ACPI_IO_MEMORY_RESOURCE.
The PEP_ACPI_INITIALIZE_MEMORY_RESOURCE function initializes a platform extension plug-in's (PEP) PEP_ACPI_IO_MEMORY_RESOURCE structure.
ReadWrite [in]If true, indicates that the resource is read/write. Otherwise, it's read-only.
MinimumAddress [in]Specifies the minimum acceptable starting address for the IO range.
MaximumAddress [in]Specifies the maximum acceptable starting address for the IO range.
Alignment [in]Specifies the alignment granularity for the memory address assigned.
MemorySize [in]Specifies the number of bytes in the memory range.
Resource [out]A pointer to the resource. The structure behind the pointer is of type PEP_ACPI_IO_MEMORY_RESOURCE.