OpenProcess method
Implementation
ffi.Pointer<ffi.Void> OpenProcess(
int dwDesiredAccess,
int bInheritHandle,
int dwProcessId,
) {
return (_OpenProcess ??= _dylib
.lookupFunction<_c_OpenProcess, _dart_OpenProcess>('OpenProcess'))(
dwDesiredAccess,
bInheritHandle,
dwProcessId,
);
}