mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
disabled unneeded EH in test
svn path=/trunk/; revision=4329
This commit is contained in:
parent
04719148b0
commit
d46106cd34
1 changed files with 4 additions and 0 deletions
|
@ -105,7 +105,9 @@ LRESULT CALLBACK MainWndProc(HWND HWnd, UINT Msg, WPARAM WParam,
|
|||
{
|
||||
PAINTSTRUCT ps;
|
||||
const HDC Hdc = BeginPaint(HWnd, &ps);
|
||||
#if 0
|
||||
try
|
||||
#endif
|
||||
{
|
||||
//
|
||||
// TODO: add palette support (see Chapter 9)...
|
||||
|
@ -116,7 +118,9 @@ LRESULT CALLBACK MainWndProc(HWND HWnd, UINT Msg, WPARAM WParam,
|
|||
HMemDC, 0, 0,
|
||||
SRCCOPY);
|
||||
}
|
||||
#if 0
|
||||
catch (...)
|
||||
#endif
|
||||
{
|
||||
EndPaint(HWnd, &ps);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue