Package ghidra.app.util.bin.format.macho
Class MachConstants
- java.lang.Object
-
- ghidra.app.util.bin.format.macho.MachConstants
-
public final class MachConstants extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
DATA_TYPE_CATEGORY
static int
MH_CIGAM
Intel x86 32-bit Magic Numberstatic int
MH_CIGAM_64
Intel x86 64-bit Magic Numberstatic int
MH_MAGIC
PowerPC 32-bit Magic Numberstatic int
MH_MAGIC_64
PowerPC 64-bit Magic Numberstatic int
NAME_LENGTH
-
Constructor Summary
Constructors Constructor Description MachConstants()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isMagic(int magic)
Convenience method for matching the magic number
-
-
-
Field Detail
-
MH_MAGIC
public static final int MH_MAGIC
PowerPC 32-bit Magic Number- See Also:
- Constant Field Values
-
MH_MAGIC_64
public static final int MH_MAGIC_64
PowerPC 64-bit Magic Number- See Also:
- Constant Field Values
-
MH_CIGAM
public static final int MH_CIGAM
Intel x86 32-bit Magic Number- See Also:
- Constant Field Values
-
MH_CIGAM_64
public static final int MH_CIGAM_64
Intel x86 64-bit Magic Number- See Also:
- Constant Field Values
-
NAME_LENGTH
public static final int NAME_LENGTH
- See Also:
- Constant Field Values
-
DATA_TYPE_CATEGORY
public static final java.lang.String DATA_TYPE_CATEGORY
- See Also:
- Constant Field Values
-
-