PAGE_WRITECOPY top-level constant

  1. @Deprecated('Use PAGE_PROTECTION_FLAGS.PAGE_WRITECOPY instead')
int const PAGE_WRITECOPY

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.

Implementation

@Deprecated('Use PAGE_PROTECTION_FLAGS.PAGE_WRITECOPY instead')
const PAGE_WRITECOPY = 0x08;