GetMachineTypeAttributes function kernel32

int GetMachineTypeAttributes(
  1. int Machine,
  2. Pointer<Int32> MachineTypeAttributes
)

Queries if the specified architecture is supported on the current system, either natively or by any form of compatibility or emulation layer.

HRESULT GetMachineTypeAttributes(
  USHORT Machine,
  MACHINE_ATTRIBUTES *MachineTypeAttributes
);

Implementation

int GetMachineTypeAttributes(
        int Machine, Pointer<Int32> MachineTypeAttributes) =>
    _GetMachineTypeAttributes(Machine, MachineTypeAttributes);