53int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine,
int nCmdShow)
56 std::filesystem::path currentExecutableDirPath;
57 std::filesystem::path pythonExecutablePath;
59 LPWSTR* argvW = extractAndCheck(argc, currentExecutableDirPath, pythonExecutablePath);
64 std::wstring commandLine = commandLineConverter(APP_RELATIVE_PATH, pythonExecutablePath, argvW, argc, console);
68 execWitoutConsole(commandLine, currentExecutableDirPath.wstring());
72 int consoleSatus = allocateConsole(TEXT(
"Stroke Seg Console"));
73 execWithConsole(commandLine, currentExecutableDirPath.wstring(), consoleSatus);
Header file for console allocation functions. This file contains declarations for functions that allo...
Header file for the executors module. This file contains declarations for functions related to launch...