2021-05-29 21:52:18 +02:00
|
|
|
#include <hex/plugin.hpp>
|
|
|
|
|
|
|
|
#include "views/view_tty_console.hpp"
|
|
|
|
|
2021-06-06 18:19:17 +02:00
|
|
|
namespace hex::plugin::windows {
|
|
|
|
|
|
|
|
void registerLanguageEnUS();
|
2021-09-20 18:41:22 +02:00
|
|
|
void registerLanguageZhCN();
|
2021-06-06 18:19:17 +02:00
|
|
|
|
2021-06-06 19:17:51 +02:00
|
|
|
void addFooterItems();
|
2021-10-31 16:28:10 +01:00
|
|
|
void registerSettings();
|
2021-06-06 18:19:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-05-29 21:52:18 +02:00
|
|
|
IMHEX_PLUGIN_SETUP("Windows", "WerWolv", "Windows-only features") {
|
2021-06-06 18:19:17 +02:00
|
|
|
using namespace hex::plugin::windows;
|
|
|
|
|
2022-01-23 23:28:56 +01:00
|
|
|
hex::ContentRegistry::Views::add<ViewTTYConsole>();
|
2021-06-06 18:19:17 +02:00
|
|
|
|
|
|
|
registerLanguageEnUS();
|
2021-09-20 18:41:22 +02:00
|
|
|
registerLanguageZhCN();
|
2021-06-06 19:17:51 +02:00
|
|
|
|
|
|
|
addFooterItems();
|
2021-10-31 16:28:10 +01:00
|
|
|
registerSettings();
|
2021-05-29 21:52:18 +02:00
|
|
|
}
|