CreateProcessW method
int
CreateProcessW(
- Pointer<
Uint16> lpApplicationName, - Pointer<
Uint16> lpCommandLine, - Pointer<
LPSECURITY_ATTRIBUTES> lpProcessAttributes, - Pointer<
LPSECURITY_ATTRIBUTES> lpThreadAttributes, - int bInheritHandles,
- int dwCreationFlags,
- Pointer<
Void> lpEnvironment, - Pointer<
Uint16> lpCurrentDirectory, - Pointer<
LPSTARTUPINFOW> lpStartupInfo, - Pointer<
LPPROCESS_INFORMATION> lpProcessInformation,
Implementation
int CreateProcessW(
ffi.Pointer<ffi.Uint16> lpApplicationName,
ffi.Pointer<ffi.Uint16> lpCommandLine,
ffi.Pointer<LPSECURITY_ATTRIBUTES> lpProcessAttributes,
ffi.Pointer<LPSECURITY_ATTRIBUTES> lpThreadAttributes,
int bInheritHandles,
int dwCreationFlags,
ffi.Pointer<ffi.Void> lpEnvironment,
ffi.Pointer<ffi.Uint16> lpCurrentDirectory,
ffi.Pointer<LPSTARTUPINFOW> lpStartupInfo,
ffi.Pointer<LPPROCESS_INFORMATION> lpProcessInformation,
) {
return (_CreateProcessW ??=
_dylib.lookupFunction<_c_CreateProcessW, _dart_CreateProcessW>(
'CreateProcessW'))(
lpApplicationName,
lpCommandLine,
lpProcessAttributes,
lpThreadAttributes,
bInheritHandles,
dwCreationFlags,
lpEnvironment,
lpCurrentDirectory,
lpStartupInfo,
lpProcessInformation,
);
}