1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2024-11-23 23:21:08 +01:00

Taskbar10: Don't crash if stobject.dll is not present

This commit is contained in:
Amrsatrio 2024-11-07 21:23:57 +07:00
parent 5451e1e28a
commit 6add2999ab

View File

@ -9969,6 +9969,9 @@ typedef struct SSOEntry
void PatchStobject(HANDLE hStobject)
{
if (!hStobject)
return;
PBYTE beginRData = NULL;
DWORD sizeRData = 0;
@ -10689,6 +10692,8 @@ DWORD Inject(BOOL bIsExplorer)
HANDLE hStobject = LoadLibraryW(L"stobject.dll");
if (hStobject)
{
VnPatchIAT(hStobject, "api-ms-win-core-registry-l1-1-0.dll", "RegGetValueW", stobject_RegGetValueW);
VnPatchIAT(hStobject, "api-ms-win-core-com-l1-1-0.dll", "CoCreateInstance", stobject_CoCreateInstanceHook);
if (IsWindows11())
@ -10705,6 +10710,7 @@ DWORD Inject(BOOL bIsExplorer)
{
PatchStobject(hStobject);
}
}
#ifdef USE_PRIVATE_INTERFACES
if (bSkinIcons)
{