struct CoffHeaderFlags [src]

Fields

RELOCS_STRIPPED: u1 = 0Image only, Windows CE, and Microsoft Windows NT and later. This indicates that the file does not contain base relocations and must therefore be loaded at its preferred base address. If the base address is not available, the loader reports an error. The default behavior of the linker is to strip base relocations from executable (EXE) files.
EXECUTABLE_IMAGE: u1 = 0Image only. This indicates that the image file is valid and can be run. If this flag is not set, it indicates a linker error.
LINE_NUMS_STRIPPED: u1 = 0COFF line numbers have been removed. This flag is deprecated and should be zero.
LOCAL_SYMS_STRIPPED: u1 = 0COFF symbol table entries for local symbols have been removed. This flag is deprecated and should be zero.
AGGRESSIVE_WS_TRIM: u1 = 0Obsolete. Aggressively trim working set. This flag is deprecated for Windows 2000 and later and must be zero.
LARGE_ADDRESS_AWARE: u1 = 0Application can handle > 2-GB addresses.
RESERVED: u1 = 0This flag is reserved for future use.
BYTES_REVERSED_LO: u1 = 0Little endian: the least significant bit (LSB) precedes the most significant bit (MSB) in memory. This flag is deprecated and should be zero.
@"32BIT_MACHINE": u1 = 0Machine is based on a 32-bit-word architecture.
DEBUG_STRIPPED: u1 = 0Debugging information is removed from the image file.
REMOVABLE_RUN_FROM_SWAP: u1 = 0If the image is on removable media, fully load it and copy it to the swap file.
NET_RUN_FROM_SWAP: u1 = 0If the image is on network media, fully load it and copy it to the swap file.
SYSTEM: u1 = 0The image file is a system file, not a user program.
DLL: u1 = 0The image file is a dynamic-link library (DLL). Such files are considered executable files for almost all purposes, although they cannot be directly run.
UP_SYSTEM_ONLY: u1 = 0The file should be run only on a uniprocessor machine.
BYTES_REVERSED_HI: u1 = 0Big endian: the MSB precedes the LSB in memory. This flag is deprecated and should be zero.

Source

pub const CoffHeaderFlags = packed struct { /// Image only, Windows CE, and Microsoft Windows NT and later. /// This indicates that the file does not contain base relocations /// and must therefore be loaded at its preferred base address. /// If the base address is not available, the loader reports an error. /// The default behavior of the linker is to strip base relocations /// from executable (EXE) files. RELOCS_STRIPPED: u1 = 0, /// Image only. This indicates that the image file is valid and can be run. /// If this flag is not set, it indicates a linker error. EXECUTABLE_IMAGE: u1 = 0, /// COFF line numbers have been removed. This flag is deprecated and should be zero. LINE_NUMS_STRIPPED: u1 = 0, /// COFF symbol table entries for local symbols have been removed. /// This flag is deprecated and should be zero. LOCAL_SYMS_STRIPPED: u1 = 0, /// Obsolete. Aggressively trim working set. /// This flag is deprecated for Windows 2000 and later and must be zero. AGGRESSIVE_WS_TRIM: u1 = 0, /// Application can handle > 2-GB addresses. LARGE_ADDRESS_AWARE: u1 = 0, /// This flag is reserved for future use. RESERVED: u1 = 0, /// Little endian: the least significant bit (LSB) precedes the /// most significant bit (MSB) in memory. This flag is deprecated and should be zero. BYTES_REVERSED_LO: u1 = 0, /// Machine is based on a 32-bit-word architecture. @"32BIT_MACHINE": u1 = 0, /// Debugging information is removed from the image file. DEBUG_STRIPPED: u1 = 0, /// If the image is on removable media, fully load it and copy it to the swap file. REMOVABLE_RUN_FROM_SWAP: u1 = 0, /// If the image is on network media, fully load it and copy it to the swap file. NET_RUN_FROM_SWAP: u1 = 0, /// The image file is a system file, not a user program. SYSTEM: u1 = 0, /// The image file is a dynamic-link library (DLL). /// Such files are considered executable files for almost all purposes, /// although they cannot be directly run. DLL: u1 = 0, /// The file should be run only on a uniprocessor machine. UP_SYSTEM_ONLY: u1 = 0, /// Big endian: the MSB precedes the LSB in memory. This flag is deprecated and should be zero. BYTES_REVERSED_HI: u1 = 0, }