13 Mar
2024
13 Mar
'24
9:58 a.m.
Zhiyi Zhang (@zhiyi) commented about programs/explorer/desktop.c:
+ CloseHandle( fullscreen_process ); + fullscreen_process = NULL; + } + + if (lp) + fullscreen_process = OpenProcess( SYNCHRONIZE, FALSE, lp ); + + return 0; + } + + return DefWindowProcW( hwnd, message, wp, lp ); +} + +static DWORD WINAPI display_settings_restorer_thread( void *param ) +{ + static const WCHAR display_settings_restorer_classname[] = L"__wine_display_settings_restorer"; You can use pointer instead.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/5060#note_64559