Add check for Windows 8.1 version

We'll probably need this at some point for issues not found in Win 8 but present in 8.1
This commit is contained in:
Pale Moon
2018-01-19 11:22:51 +01:00
committed by Roy Tam
parent 7cdf5d88cd
commit 42c9ab52b4
+6
View File
@@ -171,6 +171,12 @@ IsWin8OrLater()
return IsWindowsVersionOrLater(0x06020000ul);
}
MOZ_ALWAYS_INLINE bool
IsWin8Point1OrLater()
{
return IsWindowsVersionOrLater(0x06030000ul);
}
MOZ_ALWAYS_INLINE bool
IsWin10OrLater()
{