PAGE_TARGETS_NO_UPDATE top-level constant

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

Pages in the region will not have their CFG information updated while the protection changes for VirtualProtect. For example, if the pages in the region was allocated using PAGE_TARGETS_INVALID, then the invalid information will be maintained while the page protection changes. This flag is only valid when the protection changes to an executable type like PAGE_EXECUTE, PAGE_EXECUTE_READ, PAGE_EXECUTE_READWRITE and PAGE_EXECUTE_WRITECOPY. The default behavior for VirtualProtect protection change to executable is to mark all locations as valid call targets for CFG.

Implementation

@Deprecated('Use PAGE_PROTECTION_FLAGS.PAGE_TARGETS_NO_UPDATE instead')
const PAGE_TARGETS_NO_UPDATE = 0x40000000;