linkFixedBaseAddress Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Advises the operating system to load the program only at its preferred base address. If the preferred base address is unavailable, the operating system does not load the file.
public enum class linkFixedBaseAddress
public enum class linkFixedBaseAddress
enum linkFixedBaseAddress
public enum linkFixedBaseAddress
type linkFixedBaseAddress =
Public Enum linkFixedBaseAddress
- Inheritance
-
linkFixedBaseAddress
Fields
Name | Value | Description |
---|---|---|
linkFixedBaseAddressDefault | 0 | Default |
linkFixedBaseAddressNo | 1 | /FIXED:NO is the default when building a DLL, and /FIXED is the default for any other project type. |
linkFixedBaseAddressYes | 2 | When /FIXED is specified, LINK does not generate a relocation section in the program. If the operating system is unable to load the program at that address at run time, it issues an error message and does not load the program. |
Remarks
Used by the FixedBaseAddress property.