12 references to NativeMethods
rzc (12)
ServerProtocol\ServerConnection.cs (12)
348
startInfo.hStdError =
NativeMethods
.InvalidIntPtr;
349
startInfo.hStdInput =
NativeMethods
.InvalidIntPtr;
350
startInfo.hStdOutput =
NativeMethods
.InvalidIntPtr;
351
startInfo.dwFlags =
NativeMethods
.STARTF_USESTDHANDLES;
352
var dwCreationFlags =
NativeMethods
.NORMAL_PRIORITY_CLASS |
NativeMethods
.CREATE_NO_WINDOW;
358
var success =
NativeMethods
.CreateProcess(
361
lpProcessAttributes:
NativeMethods
.NullPtr,
362
lpThreadAttributes:
NativeMethods
.NullPtr,
365
lpEnvironment:
NativeMethods
.NullPtr, // Inherit environment
373
NativeMethods
.CloseHandle(processInfo.hProcess);
374
NativeMethods
.CloseHandle(processInfo.hThread);