internal static unsafe JetArchitecture GetProcessArchitecture()

in JetBrains.HabitatDetector/src/Impl/Helper.cs [150:154]


    internal static unsafe JetArchitecture GetProcessArchitecture(void* processHandle) => Platform switch
      {
        JetPlatform.Windows => WindowsHelper.GetProcessArchitecture(processHandle),
        _ => throw new PlatformNotSupportedException()
      };