PAGE_WRITECOPY

Constant PAGE_WRITECOPY 

Source
pub const PAGE_WRITECOPY: u32 = 8;
Expand description

Enables 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_READWRITE, and the change is written to the new page. If Data Execution Prevention is enabled, attempting to execute code in the committed region results in an access violation.