mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 12:29:56 +00:00
turn off EH in test program.
svn path=/trunk/; revision=4305
This commit is contained in:
parent
cb418f8fa6
commit
e8cb3842fb
1 changed files with 4 additions and 0 deletions
|
@ -230,7 +230,9 @@ LRESULT CALLBACK MainWndProc(HWND HWnd, UINT Msg, WPARAM WParam,
|
||||||
{
|
{
|
||||||
PAINTSTRUCT ps;
|
PAINTSTRUCT ps;
|
||||||
HDC Hdc = BeginPaint(HWnd, &ps);
|
HDC Hdc = BeginPaint(HWnd, &ps);
|
||||||
|
#if 0
|
||||||
try
|
try
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// TODO: Add palette support...
|
// TODO: Add palette support...
|
||||||
|
@ -243,7 +245,9 @@ LRESULT CALLBACK MainWndProc(HWND HWnd, UINT Msg, WPARAM WParam,
|
||||||
HMemDC, 0, 0,
|
HMemDC, 0, 0,
|
||||||
SRCCOPY);
|
SRCCOPY);
|
||||||
}
|
}
|
||||||
|
#if 0
|
||||||
catch (...)
|
catch (...)
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
EndPaint(HWnd, &ps);
|
EndPaint(HWnd, &ps);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue