PMMCOPY_ADDRESS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddk-_mm_copy_address)

_MM_COPY_ADDRESS structure

Description

The MM_COPY_ADDRESS structure contains either a virtual memory address or a physical memory address.

Members

VirtualAddress

A virtual memory address.

PhysicalAddress

A physical memory address.

Remarks

This structure is used by the MmCopyMemory routine.

See also

MmCopyMemory