IsWow64Process method
Implementation
int IsWow64Process(
ffi.Pointer<ffi.Void> hProcess,
ffi.Pointer<ffi.Int32> Wow64Process,
) {
return (_IsWow64Process ??=
_dylib.lookupFunction<_c_IsWow64Process, _dart_IsWow64Process>(
'IsWow64Process'))(
hProcess,
Wow64Process,
);
}