IsWow64Process

[DllImport("Kernel32.dll")][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool IsWow64Process(
   IntPtr hProcess,
   out bool Wow64Process
);

Microsoft documentation: Link

Last updated