2024-01-08 23:37:00 +08:00
|
|
|
|
#include <windows.h>
|
2024-04-02 15:36:52 +08:00
|
|
|
|
#include <string>
|
|
|
|
|
#include <filesystem>
|
|
|
|
|
#pragma comment(linker, "/subsystem:windows /entry:mainCRTStartup")
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
|
{
|
|
|
|
|
if (!std::filesystem::exists(L".\\LunaTranslator\\LunaTranslator_main.exe"))
|
|
|
|
|
{
|
|
|
|
|
MessageBoxW(0, L"Cant' find ./LunaTranslator/LunaTranslator_main.exe, please download again!", L"Error", 0);
|
2024-03-25 13:08:19 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2024-01-08 23:37:00 +08:00
|
|
|
|
STARTUPINFO _1 = {};
|
|
|
|
|
PROCESS_INFORMATION _2;
|
2024-04-02 15:36:52 +08:00
|
|
|
|
CreateProcessW(L".\\LunaTranslator\\LunaTranslator_main.exe", NULL, NULL, NULL, FALSE, 0, NULL, L".\\", &_1, &_2);
|
2024-01-08 23:37:00 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|