mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 06:42:08 +00:00
fix faux pas
This commit is contained in:
parent
699bef1316
commit
42c64e438f
1 changed files with 2 additions and 1 deletions
|
@ -35,12 +35,13 @@
|
|||
BOOL DwmDefWindowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, LRESULT *plResult )
|
||||
{
|
||||
typedef LRESULT(* dwmdwp)(HWND, UINT, WPARAM, LPARAM );
|
||||
BOOL result(false);
|
||||
BOOL result(FALSE);
|
||||
HMODULE module = LoadLibrary( _T( "dwmapi.dll" ) );
|
||||
if( module ) {
|
||||
dwmdwp proc = reinterpret_cast<dwmdwp>( GetProcAddress( module, "DwmDefWindowProc" ) );
|
||||
if( proc ) {
|
||||
*plResult = proc( hWnd, msg, wParam, lParam );
|
||||
result = TRUE;
|
||||
}
|
||||
FreeLibrary(module);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue