Files
ImHex/plugins/builtin/source/plugin_builtin.cpp
WerWolv 36a4930b35 Implement localization all throughout ImHex
English only for now, additional languages will come in the future
2021-02-11 23:09:45 +01:00

31 lines
625 B
C++

#include <hex/plugin.hpp>
namespace hex::plugin::builtin {
void registerLanguageEnUS();
void registerDataInspectorEntries();
void registerToolEntries();
void registerPatternLanguageFunctions();
void registerCommandPaletteCommands();
void registerSettings();
void registerDataProcessorNodes();
}
IMHEX_PLUGIN_SETUP {
using namespace hex::plugin::builtin;
registerLanguageEnUS();
registerDataInspectorEntries();
registerToolEntries();
registerPatternLanguageFunctions();
registerCommandPaletteCommands();
registerSettings();
registerDataProcessorNodes();
}