3575c55c8c
* The tests are mostly wrong for Windows 8 and up.
14 lines
269 B
C++
14 lines
269 B
C++
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <string>
|
|
|
|
struct SpawnParams {
|
|
BOOL bInheritHandles = FALSE;
|
|
DWORD dwCreationFlags = 0;
|
|
STARTUPINFOW sui = { sizeof(STARTUPINFOW), 0 };
|
|
};
|
|
|
|
HANDLE spawn(const std::string &workerName, const SpawnParams ¶ms);
|