@@ -1462,20 +1462,15 @@ IntCallWindowProcW(BOOL IsAnsiProc,
1462
1462
1463
1463
if (PreResult ) goto Exit ;
1464
1464
1465
- if (!Dialog )
1466
- Result = CALL_EXTERN_WNDPROC (WndProc , AnsiMsg .hwnd , AnsiMsg .message , AnsiMsg .wParam , AnsiMsg .lParam );
1467
- else
1468
- {
1469
1465
_SEH2_TRY
1470
1466
{
1471
1467
Result = CALL_EXTERN_WNDPROC (WndProc , AnsiMsg .hwnd , AnsiMsg .message , AnsiMsg .wParam , AnsiMsg .lParam );
1472
1468
}
1473
1469
_SEH2_EXCEPT (EXCEPTION_EXECUTE_HANDLER )
1474
1470
{
1475
- ERR ("Exception Dialog Ansi %p Msg %d pti %p Wndpti %p\n" ,WndProc ,Msg ,GetW32ThreadInfo (),pWnd -> head .pti );
1471
+ ERR ("Exception when calling Ansi WndProc %p Msg %d pti %p Wndpti %p\n" ,WndProc ,Msg ,GetW32ThreadInfo (),pWnd -> head .pti );
1476
1472
}
1477
1473
_SEH2_END ;
1478
- }
1479
1474
1480
1475
if (Hook && (MsgOverride || DlgOverride ))
1481
1476
{
@@ -1518,20 +1513,15 @@ IntCallWindowProcW(BOOL IsAnsiProc,
1518
1513
1519
1514
if (PreResult ) goto Exit ;
1520
1515
1521
- if (!Dialog )
1522
- Result = CALL_EXTERN_WNDPROC (WndProc , hWnd , Msg , wParam , lParam );
1523
- else
1524
- {
1525
1516
_SEH2_TRY
1526
1517
{
1527
1518
Result = CALL_EXTERN_WNDPROC (WndProc , hWnd , Msg , wParam , lParam );
1528
1519
}
1529
1520
_SEH2_EXCEPT (EXCEPTION_EXECUTE_HANDLER )
1530
1521
{
1531
- ERR ("Exception Dialog unicode %p Msg %d pti %p Wndpti %p\n" ,WndProc , Msg ,GetW32ThreadInfo (),pWnd -> head .pti );
1522
+ ERR ("Exception when calling unicode WndProc %p Msg %d pti %p Wndpti %p\n" ,WndProc , Msg ,GetW32ThreadInfo (),pWnd -> head .pti );
1532
1523
}
1533
1524
_SEH2_END ;
1534
- }
1535
1525
1536
1526
if (Hook && (MsgOverride || DlgOverride ))
1537
1527
{
@@ -1612,20 +1602,15 @@ IntCallWindowProcA(BOOL IsAnsiProc,
1612
1602
1613
1603
if (PreResult ) goto Exit ;
1614
1604
1615
- if (!Dialog )
1616
- Result = CALL_EXTERN_WNDPROC (WndProc , hWnd , Msg , wParam , lParam );
1617
- else
1618
- {
1619
1605
_SEH2_TRY
1620
1606
{
1621
1607
Result = CALL_EXTERN_WNDPROC (WndProc , hWnd , Msg , wParam , lParam );
1622
1608
}
1623
1609
_SEH2_EXCEPT (EXCEPTION_EXECUTE_HANDLER )
1624
1610
{
1625
- ERR ("Exception Dialog Ansi %p Msg %d pti %p Wndpti %p\n" ,WndProc ,Msg ,GetW32ThreadInfo (),pWnd -> head .pti );
1611
+ ERR ("Exception when calling Ansi WndProc %p Msg %d pti %p Wndpti %p\n" ,WndProc ,Msg ,GetW32ThreadInfo (),pWnd -> head .pti );
1626
1612
}
1627
1613
_SEH2_END ;
1628
- }
1629
1614
1630
1615
if (Hook && (MsgOverride || DlgOverride ))
1631
1616
{
@@ -1675,20 +1660,15 @@ IntCallWindowProcA(BOOL IsAnsiProc,
1675
1660
1676
1661
if (PreResult ) goto Exit ;
1677
1662
1678
- if (!Dialog )
1679
- Result = CALL_EXTERN_WNDPROC (WndProc , UnicodeMsg .hwnd , UnicodeMsg .message , UnicodeMsg .wParam , UnicodeMsg .lParam );
1680
- else
1681
- {
1682
1663
_SEH2_TRY
1683
1664
{
1684
1665
Result = CALL_EXTERN_WNDPROC (WndProc , UnicodeMsg .hwnd , UnicodeMsg .message , UnicodeMsg .wParam , UnicodeMsg .lParam );
1685
1666
}
1686
1667
_SEH2_EXCEPT (EXCEPTION_EXECUTE_HANDLER )
1687
1668
{
1688
- ERR ("Exception Dialog unicode %p Msg %d pti %p Wndpti %p\n" ,WndProc , Msg ,GetW32ThreadInfo (),pWnd -> head .pti );
1669
+ ERR ("Exception when calling unicode WndProc %p Msg %d pti %p Wndpti %p\n" ,WndProc , Msg ,GetW32ThreadInfo (),pWnd -> head .pti );
1689
1670
}
1690
1671
_SEH2_END ;
1691
- }
1692
1672
1693
1673
if (Hook && (MsgOverride || DlgOverride ))
1694
1674
{
0 commit comments