You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int __stdcall wWinMain(HINSTANCE instance, HINSTANCE, LPWSTR cmdArgs, int windowShowCmd)
256
303
{
304
+
// Prevent duplicate instances of this software
305
+
if (checkHasDuplicateProcess())
306
+
{
307
+
MessageBoxA(nullptr, "This program is already running.\n\nExisting process can be closed from Task Manager (open by pressing Ctrl+Shift+Esc).", "Duplicate process", MB_OK | MB_ICONERROR);
0 commit comments