IsWow64GuestMachineSupported method

int IsWow64GuestMachineSupported(
  1. int WowGuestMachine,
  2. Pointer<Int32> MachineIsSupported
)

Implementation

int IsWow64GuestMachineSupported(
  int WowGuestMachine,
  ffi.Pointer<ffi.Int32> MachineIsSupported,
) {
  return (_IsWow64GuestMachineSupported ??= _dylib.lookupFunction<
      _c_IsWow64GuestMachineSupported,
      _dart_IsWow64GuestMachineSupported>('IsWow64GuestMachineSupported'))(
    WowGuestMachine,
    MachineIsSupported,
  );
}