[user32_apitest]

- Add one more small test for WM_SYSTIMER

svn path=/trunk/; revision=53835
This commit is contained in:
Giannis Adamopoulos 2011-09-24 12:22:21 +00:00
parent 1db290c144
commit 0c34695bab

View file

@ -44,6 +44,9 @@ LRESULT CALLBACK TmeTestProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPar
case WM_GETICON : case WM_GETICON :
case WM_GETTEXT: case WM_GETTEXT:
break; break;
case WM_SYSTIMER:
ok(0, "Got unexpected WM_SYSTIMER in the winproc. wParam=%d\n", wParam);
break;
default: default:
record_message(iwnd, message, SENT, 0,0); record_message(iwnd, message, SENT, 0,0);
} }