Fix incorrect return type

This commit is contained in:
Ritchie Swann 2024-08-11 10:52:32 +01:00 committed by Rachael Alexanderson
parent d17bde151f
commit 0d5e35985d
No known key found for this signature in database
GPG key ID: 26A8ACCE97115EE0

View file

@ -34,7 +34,7 @@
BOOL DwmDefWindowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, LRESULT *plResult )
{
typedef LRESULT(* dwmdwp)(HWND, UINT, WPARAM, LPARAM, LRESULT* );
typedef BOOL(* dwmdwp)(HWND, UINT, WPARAM, LPARAM, LRESULT* );
BOOL result(FALSE);
HMODULE module = LoadLibrary( _T( "dwmapi.dll" ) );
if( module ) {