Class CoffFileHeaderFlag

java.lang.Object
ghidra.app.util.bin.format.coff.CoffFileHeaderFlag

public final class CoffFileHeaderFlag extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
     
    static final int
     
    static final int
    Indicates that the file is 32-bit little endian.
    static final int
    If set, all unresolved symbols have been resolved and the file may be considered executable.
    static final int
    If set, all line number information has been removed from the file (or was never added in the first place).
    static final int
    If set, all local symbols have been removed from the file (or were never added in the first place).
    static final int
    Indicates this file is a minimal object file (".m")
    static final int
     
    static final int
     
    static final int
    If set, there is not relocation information in this file.
    static final int
    Indicates this file has had its bytes swabbed (in names).
    static final int
    Indicates this file is a fully bound update file.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • F_RELFLG

      public static final int F_RELFLG
      If set, there is not relocation information in this file. This is usually clear for objects and set for executables.
      See Also:
    • F_EXEC

      public static final int F_EXEC
      If set, all unresolved symbols have been resolved and the file may be considered executable.
      See Also:
    • F_LNNO

      public static final int F_LNNO
      If set, all line number information has been removed from the file (or was never added in the first place).
      See Also:
    • F_LSYMS

      public static final int F_LSYMS
      If set, all local symbols have been removed from the file (or were never added in the first place).
      See Also:
    • F_MINMAL

      public static final int F_MINMAL
      Indicates this file is a minimal object file (".m")
      See Also:
    • F_UPDATE

      public static final int F_UPDATE
      Indicates this file is a fully bound update file.
      See Also:
    • F_SWABD

      public static final int F_SWABD
      Indicates this file has had its bytes swabbed (in names).
      See Also:
    • F_AR16WR

      public static final int F_AR16WR
      See Also:
    • F_AR32WR

      public static final int F_AR32WR
      Indicates that the file is 32-bit little endian.
      See Also:
    • F_AR32W

      public static final int F_AR32W
      See Also:
    • F_PATCH

      public static final int F_PATCH
      See Also:
    • F_NODF

      public static final int F_NODF
      See Also:
  • Constructor Details

    • CoffFileHeaderFlag

      public CoffFileHeaderFlag()