linkFixedBaseAddress Enumeration
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.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
'Declaration
Public Enumeration linkFixedBaseAddress
public enum linkFixedBaseAddress
public enum class linkFixedBaseAddress
type linkFixedBaseAddress
public enum linkFixedBaseAddress
Members
Member name | Description | |
---|---|---|
linkFixedBaseAddressDefault | Default | |
linkFixedBaseAddressNo | /FIXED:NO is the default when building a DLL, and /FIXED is the default for any other project type. | |
linkFixedBaseAddressYes | 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.