enumRandomizedBaseAddressBOOL Enum

Definition

Specifies whether to generate an executable image that can be randomly rebased at load time by using the address space layout randomization (ASLR) feature of Windows Vista.

public enum class enumRandomizedBaseAddressBOOL
public enum class enumRandomizedBaseAddressBOOL
enum enumRandomizedBaseAddressBOOL
public enum enumRandomizedBaseAddressBOOL
type enumRandomizedBaseAddressBOOL = 
Public Enum enumRandomizedBaseAddressBOOL
Inheritance
enumRandomizedBaseAddressBOOL

Fields

RandomizedBaseAddressDefault 0

No option is specified. That is, neither /DYNAMICBASE nor /DYNAMICBASE:NO is specified.

RandomizedBaseAddressNo 1

Do not randomly rebase the executable. This value is equivalent to the /DYNAMICBASE:NO linker option.

RandomizedBaseAddressYes 2

Randomly rebase the executable. This value is equivalent to the /DYNAMICBASE linker option.

Remarks

The ASLR feature modifies the header of an executable to indicate whether the application should be randomly rebased at load time. This enumeration corresponds to the /DYNAMICBASE (Use address space layout randomization) linker option.

Applies to