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 commit a6d66a4a56c382f6f0e7731c3a542987fa3c4797. * Revert "feat: keep console window on Windows for debug builds" This reverts commit 9fd4699c9f660eb8ea2333b76f6e4cecb5d85d70.
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();
|
|
}
|
|
|
|
|