// ntddk.h
typedef struct _MM_COPY_ADDRESS {
union {
PVOID VirtualAddress;
PHYSICAL_ADDRESS PhysicalAddress;
};
} MM_COPY_ADDRESS, *PMMCOPY_ADDRESS;
View the official Windows Driver Kit DDI referenceNo description available.
The MM_COPY_ADDRESS structure contains either a virtual memory address or a physical memory address.
VirtualAddressA virtual memory address.
PhysicalAddressA physical memory address.
This structure is used by the MmCopyMemory routine.