Skip to content

Commit

Permalink
Taskbar10: Turn off the code for loading the reimplemented taskbar on…
Browse files Browse the repository at this point in the history
… public builds for now
  • Loading branch information
Amrsatrio committed Feb 21, 2024
1 parent 08dec82 commit 9f9acfc
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ExplorerPatcher/dllmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -11895,6 +11895,7 @@ BOOL CrashCounterHandleEntryPoint()

#pragma region "Loader for alternate taskbar implementation"
#ifdef _WIN64
#if WITH_ALT_TASKBAR_IMPL
BOOL CheckExplorerSymbols(symbols_addr* symbols_PTRS)
{
BOOL bAllValid = TRUE;
Expand Down Expand Up @@ -11979,6 +11980,7 @@ void PrepareAlternateTaskbarImplementation(symbols_addr* symbols_PTRS, const WCH
wprintf(L"[TB] Using '%s'\n", pszTaskbarDll);
}
#endif
#endif
#pragma endregion


Expand Down Expand Up @@ -12385,7 +12387,11 @@ DWORD Inject(BOOL bIsExplorer)
}
}

#if WITH_ALT_TASKBAR_IMPL
const WCHAR* pszTaskbarDll = GetTaskbarDllChecked(&symbols_PTRS);
#else
const WCHAR* pszTaskbarDll = NULL;
#endif
if (bOldTaskbar >= 2 && !pszTaskbarDll)
{
bOldTaskbar = 1;
Expand Down Expand Up @@ -12731,7 +12737,9 @@ DWORD Inject(BOOL bIsExplorer)
#endif

VnPatchIAT(hTwinuiPcshell, "API-MS-WIN-CORE-REGISTRY-L1-1-0.DLL", "RegGetValueW", twinuipcshell_RegGetValueW);
#if WITH_ALT_TASKBAR_IMPL
PrepareAlternateTaskbarImplementation(&symbols_PTRS, pszTaskbarDll);
#endif
printf("Setup twinui.pcshell functions done\n");


Expand Down
11 changes: 11 additions & 0 deletions ExplorerPatcher/utility.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
#define WM_MSG_GUI_SECTION WM_USER + 1
#define WM_MSG_GUI_SECTION_GET 1

#ifndef WITH_ALT_TASKBAR_IMPL
#define WITH_ALT_TASKBAR_IMPL 0
#endif

#ifdef __cplusplus
extern "C" {
#endif
Expand Down Expand Up @@ -693,6 +697,7 @@ inline BOOL DoesWindows10StartMenuExist()
return FileExistsW(szPath);
}

#if WITH_ALT_TASKBAR_IMPL
inline const WCHAR* PickTaskbarDll()
{
DWORD b = global_rovi.dwBuildNumber;
Expand Down Expand Up @@ -734,6 +739,12 @@ inline BOOL DoesTaskbarDllExist()
wcscat_s(szPath, MAX_PATH, pszTaskbarDll);
return FileExistsW(szPath);
}
#else
inline BOOL DoesTaskbarDllExist()
{
return FALSE;
}
#endif

#ifdef __cplusplus
}
Expand Down
2 changes: 2 additions & 0 deletions ep_setup/ep_setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,11 +442,13 @@ BOOL DownloadResource(BOOL bInstall, LPCWSTR pwszURL, DWORD dwSize, LPCSTR chash

void ProcessTaskbarDlls(BOOL* bInOutOk, BOOL bInstall, BOOL bExtractMode, HINSTANCE hInstance, WCHAR wszPath[260])
{
#if WITH_ALT_TASKBAR_IMPL
LPCWSTR pwszTaskbarDllName = bExtractMode ? NULL : PickTaskbarDll();
if (*bInOutOk) *bInOutOk = InstallResource(bInstall && (bExtractMode || pwszTaskbarDllName && !wcscmp(pwszTaskbarDllName, L"ep_taskbar.2.dll")), hInstance, IDR_EP_TASKBAR_2, wszPath, L"ep_taskbar.2.dll");
if (*bInOutOk) *bInOutOk = InstallResource(bInstall && (bExtractMode || pwszTaskbarDllName && !wcscmp(pwszTaskbarDllName, L"ep_taskbar.3.dll")), hInstance, IDR_EP_TASKBAR_3, wszPath, L"ep_taskbar.3.dll");
if (*bInOutOk) *bInOutOk = InstallResource(bInstall && (bExtractMode || pwszTaskbarDllName && !wcscmp(pwszTaskbarDllName, L"ep_taskbar.4.dll")), hInstance, IDR_EP_TASKBAR_4, wszPath, L"ep_taskbar.4.dll");
if (*bInOutOk) *bInOutOk = InstallResource(bInstall && (bExtractMode || pwszTaskbarDllName && !wcscmp(pwszTaskbarDllName, L"ep_taskbar.5.dll")), hInstance, IDR_EP_TASKBAR_5, wszPath, L"ep_taskbar.5.dll");
#endif
}

int WINAPI wWinMain(
Expand Down
6 changes: 6 additions & 0 deletions ep_setup/resources/ep_setup.rc
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ IDR_EP_STARTMENU RCDATA "..\\build\\Release\\ep_startmenu.dll

IDR_EP_GUI RCDATA "..\\build\\Release\\ep_gui.dll"

#ifdef WITH_ALT_TASKBAR_IMPL
#if WITH_ALT_TASKBAR_IMPL

#if EP_TASKBAR_2_EXISTS
IDR_EP_TASKBAR_2 RCDATA "..\\build\\Release\\ep_taskbar.2.dll"
#endif
Expand All @@ -122,6 +125,9 @@ IDR_EP_TASKBAR_4 RCDATA "..\\build\\Release\\ep_taskbar.4.dll
IDR_EP_TASKBAR_5 RCDATA "..\\build\\Release\\ep_taskbar.5.dll"
#endif

#endif
#endif

#endif // English (United States) resources
/////////////////////////////////////////////////////////////////////////////

Expand Down

0 comments on commit 9f9acfc

Please sign in to comment.