12 lines
243 B
C++
Raw Normal View History

2024-11-06 06:46:35 +08:00
#include "LunaHost.h"
int main()
{
SetProcessDPIAware();
LunaHost _lunahost;
_lunahost.show();
mainwindow::run();
}
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
main();
}