Skip to content

Commit

Permalink
Check for fall 2018 WPT
Browse files Browse the repository at this point in the history
  • Loading branch information
randomascii committed May 16, 2019
1 parent c3d6fdf commit f916345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UIforETW/UIforETWDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,8 @@ BOOL CUIforETWDlg::OnInitDialog()

auto xperfVersion = GetFileVersion(GetXperfPath());
const int64_t requiredXperfVersion = (10llu << 48) + 0 + (10586llu << 16) + (15llu << 0);
// Windows 10 April 2018 version - requires Windows 8 or higher?
const int64_t preferredXperfVersion = (10llu << 48) + 0 + (17134llu << 16) + (12llu << 0);
// Windows 10 fall 2018 version, 10.0.17763.132 - requires Windows 8 or higher?
const int64_t preferredXperfVersion = (10llu << 48) + 0 + (17763llu << 16) + (132llu << 0);

wchar_t systemDir[MAX_PATH];
systemDir[0] = 0;
Expand Down

0 comments on commit f916345

Please sign in to comment.