mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 16:44:13 +08:00
12 lines
243 B
C++
12 lines
243 B
C++
|
#include "LunaHost.h"
|
||
|
int main()
|
||
|
{
|
||
|
SetProcessDPIAware();
|
||
|
LunaHost _lunahost;
|
||
|
_lunahost.show();
|
||
|
mainwindow::run();
|
||
|
}
|
||
|
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
|
||
|
{
|
||
|
main();
|
||
|
}
|