MCPcopy Create free account
hub / github.com/ChiyukiGana/Quickinput / RunPath

Method RunPath

source/src/tools/process.h:21–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19 return std::wstring();
20 }
21 static bool RunPath(std::wstring path = L"") { if (path.size()) return SetCurrentDirectoryW(path.c_str()); else return SetCurrentDirectoryW(Path::RemoveFile(exePath()).c_str()); }
22 static std::wstring exePath() { PATH_BUFFERW(path); GetModuleFileNameW(0, path, PATH_BUFFER_SIZE); return path; }
23 static std::wstring exeName() { return Path::GetFile(exePath()); }
24 static bool isRunning(LPCWSTR mutexName) { HANDLE handle = CreateMutexW(0, 0, mutexName); if (GetLastError() == ERROR_ALREADY_EXISTS) { CloseHandle(handle); return true; } CloseHandle(handle); return false; }

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected