PAGE_EXECUTE_WRITECOPY top-level constant

int const PAGE_EXECUTE_WRITECOPY

Enables execute, read-only, or copy-on-write access to a mapped view of a file mapping object. An attempt to write to a committed copy-on-write page results in a private copy of the page being made for the process. The private page is marked as PAGE_EXECUTE_READWRITE, and the change is written to the new page.

Implementation

const PAGE_EXECUTE_WRITECOPY = 0x80;