mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 12:08:55 +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;
|
||||
HDC Hdc = BeginPaint(HWnd, &ps);
|
||||
#if 0
|
||||
try
|
||||
#endif
|
||||
{
|
||||
//
|
||||
// TODO: Add palette support...
|
||||
|
@ -243,7 +245,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