feat: Added new --select, --pattern and --debug-mode subcommands

This commit is contained in:
WerWolv
2025-01-29 18:32:54 +01:00
parent e74e4e92a0
commit aee7a09b6c
7 changed files with 73 additions and 4 deletions

View File

@@ -14,6 +14,8 @@ namespace hex::plugin::builtin {
void handleOpenCommand(const std::vector<std::string> &args);
void handleNewCommand(const std::vector<std::string> &args);
void handleSelectCommand(const std::vector<std::string> &args);
void handlePatternCommand(const std::vector<std::string> &args);
void handleCalcCommand(const std::vector<std::string> &args);
void handleHashCommand(const std::vector<std::string> &args);
void handleEncodeCommand(const std::vector<std::string> &args);
@@ -23,6 +25,7 @@ namespace hex::plugin::builtin {
void handleHexdumpCommand(const std::vector<std::string> &args);
void handleDemangleCommand(const std::vector<std::string> &args);
void handleSettingsResetCommand(const std::vector<std::string> &args);
void handleDebugModeCommand(const std::vector<std::string> &args);
void registerCommandForwarders();