Commit 4a6dc05d authored by captainwong's avatar captainwong

add function daemon to win32.h

parent 33df6140
...@@ -81,6 +81,25 @@ inline std::string get_exe_path_a() ...@@ -81,6 +81,25 @@ inline std::string get_exe_path_a()
} }
inline DWORD daemon(const std::wstring& path, bool wait_app_exit = true) {
STARTUPINFO si = { sizeof(si) };
si.dwFlags |= STARTF_USESHOWWINDOW;
si.wShowWindow = SW_SHOW;
PROCESS_INFORMATION pi;
::SetFocus(GetDesktopWindow());
BOOL bRet = CreateProcess(NULL, (LPWSTR)(path.c_str()), NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi);
if (bRet) {
WaitForSingleObject(pi.hProcess, wait_app_exit ? INFINITE : 0);
DWORD dwExit;
::GetExitCodeProcess(pi.hProcess, &dwExit);
CloseHandle(pi.hThread);
CloseHandle(pi.hProcess);
return dwExit;
}
return -1;
}
inline BOOL Win32CenterWindow(HWND hwndWindow) inline BOOL Win32CenterWindow(HWND hwndWindow)
{ {
HWND hwndParent; HWND hwndParent;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment