// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Helper class to detect if we are running in a UWP container. // https://msdn.microsoft.com/en-us/library/windows/desktop/hh446599(v=vs.85).aspx // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Utilities { using System; using System.Runtime.InteropServices; using System.Text; public class UwpDetect { [DllImport("kernel32.dll")] static extern int GetCurrentPackageFullName(ref int length, [MarshalAs(UnmanagedType.LPWStr)] StringBuilder fullName); private const int APPMODEL_ERROR_NO_PACKAGE = 15700; public static bool IsUWP() { if (Environment.OSVersion.Version.Major == 6 && Environment.OSVersion.Version.Minor <= 1) { return false; } int length = 0; StringBuilder packageName = new StringBuilder(1024); int result = GetCurrentPackageFullName(ref length, packageName); // Only available in 6.2 or later. if (result == APPMODEL_ERROR_NO_PACKAGE) { return false; } if (packageName.ToString().Trim().Length > 0) { return true; } return false; } } }