1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2025-01-19 01:04:08 +01:00

General: Export variable that tells if desktop is in foreground

This commit is contained in:
Valentin Radu 2022-05-28 12:54:36 +03:00
parent 6bd514ba13
commit 9bf60309c0

View File

@ -190,7 +190,7 @@ DWORD S_Icon_Dark_TaskView = 0;
void* P_Icon_Dark_Widgets = NULL;
DWORD S_Icon_Dark_Widgets = 0;
BOOL g_bIsDesktopRaised = FALSE;
#include "utility.h"
#include "resource.h"
@ -2424,6 +2424,10 @@ INT64 Shell_TrayWndSubclassProc(
DestroyMenu(hMenu);
}
}
else if (uMsg == 1368)
{
g_bIsDesktopRaised = (lParam & 1) == 0;
}
return DefSubclassProc(hWnd, uMsg, wParam, lParam);
}
#endif