-
-
Save sorpdev/d440ba7a562f8bc8409acaab2d99a53a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <windows.h> | |
| void SetWindowBlur(HWND hWnd) | |
| { | |
| const HINSTANCE hModule = LoadLibrary(TEXT("user32.dll")); | |
| if (hModule) | |
| { | |
| struct ACCENTPOLICY | |
| { | |
| int nAccentState; | |
| int nFlags; | |
| int nColor; | |
| int nAnimationId; | |
| }; | |
| struct WINCOMPATTRDATA | |
| { | |
| int nAttribute; | |
| PVOID pData; | |
| ULONG ulDataSize; | |
| }; | |
| typedef BOOL(WINAPI*pSetWindowCompositionAttribute)(HWND, WINCOMPATTRDATA*); | |
| const pSetWindowCompositionAttribute SetWindowCompositionAttribute = (pSetWindowCompositionAttribute)GetProcAddress(hModule, "SetWindowCompositionAttribute"); | |
| if (SetWindowCompositionAttribute) | |
| { | |
| ACCENTPOLICY policy = { 3, 0, 0, 0 }; // ACCENT_ENABLE_BLURBEHIND=3... | |
| WINCOMPATTRDATA data = { 19, &policy, sizeof(ACCENTPOLICY) }; // WCA_ACCENT_POLICY=19 | |
| SetWindowCompositionAttribute(hWnd, &data); | |
| } | |
| FreeLibrary(hModule); | |
| } | |
| } | |
| int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPreInst, LPSTR pCmdLine, int nCmdShow) | |
| { | |
| HWND taskbar = FindWindow(L"Shell_TrayWnd", NULL); | |
| while (true) { | |
| SetWindowBlur(taskbar); Sleep((DWORD)10); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment