2021-05-29 21:52:18 +02:00
|
|
|
#include <hex/plugin.hpp>
|
|
|
|
#include <imgui.h>
|
|
|
|
#include <imgui_internal.h>
|
|
|
|
|
|
|
|
#include "views/view_tty_console.hpp"
|
|
|
|
|
2021-06-06 18:19:17 +02:00
|
|
|
namespace hex::plugin::windows {
|
|
|
|
|
|
|
|
void registerLanguageEnUS();
|
|
|
|
|
2021-06-06 19:17:51 +02:00
|
|
|
void addFooterItems();
|
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;
|
|
|
|
|
|
|
|
ContentRegistry::Views::add<ViewTTYConsole>();
|
|
|
|
|
|
|
|
registerLanguageEnUS();
|
2021-06-06 19:17:51 +02:00
|
|
|
|
|
|
|
addFooterItems();
|
2021-05-29 21:52:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|