LunaHook-mirror/LunaHost/GUI/main.cpp

11 lines
241 B
C++
Raw Normal View History

2024-02-07 20:59:24 +08:00
#include"LunaHost.h"
2024-02-09 09:25:26 +08:00
int main(){
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
}