LunaHook-mirror/LunaHost/GUI/main.cpp

12 lines
243 B
C++
Raw Normal View History

2024-07-21 19:28:47 +08:00
#include "LunaHost.h"
int main()
{
2024-02-09 09:25:26 +08:00
SetProcessDPIAware();
LunaHost _lunahost;
_lunahost.show();
mainwindow::run();
}
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
main();
2024-02-07 20:59:24 +08:00
}