mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-03 05:57:40 -05:00
feat: Added --plugin, --calc, --hash, --encode and --decode subcommands
This commit is contained in:
22
plugins/builtin/include/content/command_line_interface.hpp
Normal file
22
plugins/builtin/include/content/command_line_interface.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace hex::plugin::builtin {
|
||||
|
||||
void handleVersionCommand(const std::vector<std::string> &args);
|
||||
void handleHelpCommand(const std::vector<std::string> &args);
|
||||
void handlePluginsCommand(const std::vector<std::string> &args);
|
||||
|
||||
void handleOpenCommand(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);
|
||||
void handleDecodeCommand(const std::vector<std::string> &args);
|
||||
|
||||
|
||||
void registerCommandForwarders();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user