internal static unsafe JetArchitecture GetProcessArchitecture()

in JetBrains.HabitatDetector/src/Impl/Windows/WindowsHelper.cs [12:17]


    internal static unsafe JetArchitecture GetProcessArchitecture()
    {
      SYSTEM_INFO systemInfo;
      Kernel32Dll.GetSystemInfo(&systemInfo);
      return ConvertToArchitecture(systemInfo.wProcessorArchitecture);
    }