CreateProcessA method
int
CreateProcessA(
- Pointer<
Int8> lpApplicationName, - Pointer<
Int8> lpCommandLine, - Pointer<
LPSECURITY_ATTRIBUTES> lpProcessAttributes, - Pointer<
LPSECURITY_ATTRIBUTES> lpThreadAttributes, - int bInheritHandles,
- int dwCreationFlags,
- Pointer<
Void> lpEnvironment, - Pointer<
Int8> lpCurrentDirectory, - Pointer<
LPSTARTUPINFOA> lpStartupInfo, - Pointer<
LPPROCESS_INFORMATION> lpProcessInformation,
Implementation
int CreateProcessA(
ffi.Pointer<ffi.Int8> lpApplicationName,
ffi.Pointer<ffi.Int8> lpCommandLine,
ffi.Pointer<LPSECURITY_ATTRIBUTES> lpProcessAttributes,
ffi.Pointer<LPSECURITY_ATTRIBUTES> lpThreadAttributes,
int bInheritHandles,
int dwCreationFlags,
ffi.Pointer<ffi.Void> lpEnvironment,
ffi.Pointer<ffi.Int8> lpCurrentDirectory,
ffi.Pointer<LPSTARTUPINFOA> lpStartupInfo,
ffi.Pointer<LPPROCESS_INFORMATION> lpProcessInformation,
) {
return (_CreateProcessA ??=
_dylib.lookupFunction<_c_CreateProcessA, _dart_CreateProcessA>(
'CreateProcessA'))(
lpApplicationName,
lpCommandLine,
lpProcessAttributes,
lpThreadAttributes,
bInheritHandles,
dwCreationFlags,
lpEnvironment,
lpCurrentDirectory,
lpStartupInfo,
lpProcessInformation,
);
}