Browse Source

Taskbar10: Allow loading ep_taskbar.0.dll on all major Windows 10 versions

pull/4392/head
Amrsatrio 10 months ago
parent
commit
1edb989406
  1. 7
      ExplorerPatcher/utility.h

7
ExplorerPatcher/utility.h

@ -948,7 +948,12 @@ inline const WCHAR* PickTaskbarDll() @@ -948,7 +948,12 @@ inline const WCHAR* PickTaskbarDll()
{
DWORD b = global_rovi.dwBuildNumber;
if (b >= 19041 && b <= 19045) // Windows 10 20H2, 21H2, 22H2
if (b == 15063 // Windows 10 1703
|| b == 16299 // Windows 10 1709
|| b == 17134 // Windows 10 1803
|| b == 17763 // Windows 10 1809
|| b >= 18362 && b <= 18363 // Windows 10 1903, 1909
|| b >= 19041 && b <= 19045) // Windows 10 20H2, 21H2, 22H2
{
return L"ep_taskbar.0.dll";
}

Loading…
Cancel
Save