5edc0b876c
* feat(i18n): add Chinese(Simplified) translations * feat: keep console window on Windows for debug builds * feat(18n) * feat(i18n): improve Chinese translation * fix: unify the line terminators * feat(build): formatting * fix: exclude from SysWow64 for 64bits windows * Revert "fix: exclude from SysWow64 for 64bits windows" This reverts commita6d66a4a56
. * Revert "feat: keep console window on Windows for debug builds" This reverts commit9fd4699c9f
.
26 lines
444 B
C++
26 lines
444 B
C++
#include <hex/plugin.hpp>
|
|
|
|
#include "views/view_tty_console.hpp"
|
|
|
|
namespace hex::plugin::windows {
|
|
|
|
void registerLanguageEnUS();
|
|
void registerLanguageZhCN();
|
|
|
|
void addFooterItems();
|
|
}
|
|
|
|
|
|
IMHEX_PLUGIN_SETUP("Windows", "WerWolv", "Windows-only features") {
|
|
using namespace hex::plugin::windows;
|
|
|
|
ContentRegistry::Views::add<ViewTTYConsole>();
|
|
|
|
registerLanguageEnUS();
|
|
registerLanguageZhCN();
|
|
|
|
addFooterItems();
|
|
}
|
|
|
|
|