Package org.eclipse.cdt.utils.coff
Class Coff.FileHeader
- java.lang.Object
-
- org.eclipse.cdt.utils.coff.Coff.FileHeader
-
-
Field Summary
Fields Modifier and Type Field Description static int
F_AR16WR
static int
F_AR32W
static int
F_AR32WR
static int
F_DLL
static int
F_DYNLOAD
static int
F_EXEC
int
f_flags
static int
F_LNNO
static int
F_LSYMS
int
f_magic
int
f_nscns
int
f_nsyms
int
f_opthdr
static int
F_RELFLG
static int
F_SHROBJ
int
f_symptr
int
f_timdat
static int
FILHSZ
-
Constructor Summary
Constructors Constructor Description FileHeader(byte[] hdr, boolean little)
FileHeader(RandomAccessFile file)
FileHeader(RandomAccessFile file, long offset)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
commonSetup(byte[] hdr, boolean little)
boolean
isDebug()
boolean
isExec()
boolean
isStrip()
String
toString()
-
-
-
Field Detail
-
FILHSZ
public static final int FILHSZ
- See Also:
- Constant Field Values
-
F_RELFLG
public static final int F_RELFLG
- See Also:
- Constant Field Values
-
F_EXEC
public static final int F_EXEC
- See Also:
- Constant Field Values
-
F_LNNO
public static final int F_LNNO
- See Also:
- Constant Field Values
-
F_LSYMS
public static final int F_LSYMS
- See Also:
- Constant Field Values
-
F_AR16WR
public static final int F_AR16WR
- See Also:
- Constant Field Values
-
F_AR32WR
public static final int F_AR32WR
- See Also:
- Constant Field Values
-
F_AR32W
public static final int F_AR32W
- See Also:
- Constant Field Values
-
F_DYNLOAD
public static final int F_DYNLOAD
- See Also:
- Constant Field Values
-
F_SHROBJ
public static final int F_SHROBJ
- See Also:
- Constant Field Values
-
F_DLL
public static final int F_DLL
- See Also:
- Constant Field Values
-
f_magic
public int f_magic
-
f_nscns
public int f_nscns
-
f_timdat
public int f_timdat
-
f_symptr
public int f_symptr
-
f_nsyms
public int f_nsyms
-
f_opthdr
public int f_opthdr
-
f_flags
public int f_flags
-
-
Constructor Detail
-
FileHeader
public FileHeader(RandomAccessFile file) throws IOException
- Throws:
IOException
-
FileHeader
public FileHeader(RandomAccessFile file, long offset) throws IOException
- Throws:
IOException
-
FileHeader
public FileHeader(byte[] hdr, boolean little) throws EOFException
- Throws:
EOFException
-
-
Method Detail
-
commonSetup
public void commonSetup(byte[] hdr, boolean little) throws EOFException
- Throws:
EOFException
-
isStrip
public boolean isStrip()
-
isExec
public boolean isExec()
-
isDebug
public boolean isDebug()
-
-