mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
47 lines
841 B
C
47 lines
841 B
C
|
|
#ifndef CUTTER_INITIALOPTIONS_H
|
|
#define CUTTER_INITIALOPTIONS_H
|
|
|
|
#include "core/Cutter.h"
|
|
|
|
/**
|
|
* @brief The CommandDescription struct is a pair of a Rizin command and its description
|
|
*/
|
|
struct CommandDescription {
|
|
QString command;
|
|
QString description;
|
|
};
|
|
|
|
struct InitialOptions
|
|
{
|
|
enum class Endianness { Auto, Little, Big };
|
|
|
|
QString filename;
|
|
|
|
bool useVA = true;
|
|
RVA binLoadAddr = RVA_INVALID;
|
|
RVA mapAddr = RVA_INVALID;
|
|
|
|
QString arch;
|
|
QString cpu;
|
|
int bits = 0;
|
|
QString os;
|
|
|
|
Endianness endian;
|
|
|
|
bool writeEnabled = false;
|
|
bool loadBinInfo = true;
|
|
QString forceBinPlugin;
|
|
|
|
bool demangle = true;
|
|
|
|
QString pdbFile;
|
|
QString script;
|
|
|
|
QList<CommandDescription> analCmd = { {"aaa", "Auto analysis"} };
|
|
|
|
QString shellcode;
|
|
};
|
|
|
|
#endif //CUTTER_INITIALOPTIONS_H
|