Handle WM_SYNCPAINT with DefWindowProc.

This commit is contained in:
Ove Kaaven 2002-07-10 03:04:58 +00:00 committed by Alexandre Julliard
parent 81963df6cf
commit ea20614e39
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ static LRESULT WINAPI DirectDrawSurface_WndProc(HWND hwnd, UINT msg, WPARAM wPar
case WM_SIZE: case WM_SIZE:
case WM_MOVE: case WM_MOVE:
case WM_ERASEBKGND: case WM_ERASEBKGND:
case WM_SYNCPAINT:
/* since we're pretending fullscreen, /* since we're pretending fullscreen,
* let's not pass these on to the app */ * let's not pass these on to the app */
ret = DefWindowProcA(hwnd, msg, wParam, lParam); ret = DefWindowProcA(hwnd, msg, wParam, lParam);