mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Turned off SEH in test
svn path=/trunk/; revision=4060
This commit is contained in:
parent
8dc97ce4a4
commit
d3190c9220
1 changed files with 5 additions and 1 deletions
|
@ -199,7 +199,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)...
|
||||
|
@ -232,8 +234,10 @@ LRESULT CALLBACK MainWndProc(HWND HWnd, UINT Msg, WPARAM WParam,
|
|||
SRCCOPY);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#if 0
|
||||
catch (...)
|
||||
#endif
|
||||
{
|
||||
EndPaint(HWnd, &ps);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue