Do not send WM_SIZING to 16-bit windows.

This commit is contained in:
Alexandre Julliard 2000-05-07 18:41:59 +00:00
parent ebdb9dc7b4
commit 2de84c9bfa
1 changed files with 2 additions and 0 deletions

View File

@ -1923,6 +1923,8 @@ INT WINPROC_MapMsg32ATo16( HWND hwnd, UINT msg32, WPARAM wParam32,
case WM_WININICHANGE:
FIXME_(msg)("message %04x needs translation\n", msg32 );
return -1;
case WM_SIZING: /* should not be send to 16-bit apps */
return -1;
default: /* No translation needed */
return 0;
}