PAGE_EXECUTE_WRITECOPY top-level constant

  1. @Deprecated('Use PAGE_PROTECTION_FLAGS.PAGE_EXECUTE_WRITECOPY instead')
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

@Deprecated('Use PAGE_PROTECTION_FLAGS.PAGE_EXECUTE_WRITECOPY instead')
const PAGE_EXECUTE_WRITECOPY = 0x80;