user32: Avoid newlines inside FIXME messages.

This commit is contained in:
Michael Stefaniuc 2010-01-11 23:48:29 +01:00 committed by Alexandre Julliard
parent 71d7331932
commit 31ef27ed57
1 changed files with 4 additions and 4 deletions

View File

@ -539,8 +539,8 @@ DWORD WINAPI RegisterTasklist (DWORD x)
*/
HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hnd, LPVOID notifyfilter, DWORD flags)
{
FIXME("(hwnd=%p, filter=%p,flags=0x%08x),\n"
"\treturns a fake device notification handle!\n", hnd,notifyfilter,flags );
FIXME("(hwnd=%p, filter=%p,flags=0x%08x) returns a fake device notification handle!\n",
hnd,notifyfilter,flags );
return (HDEVNOTIFY) 0xcafecafe;
}
@ -569,8 +569,8 @@ HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hnd, LPVOID notifyfilter, D
*/
HDEVNOTIFY WINAPI RegisterDeviceNotificationW(HANDLE hRecepient, LPVOID pNotificationFilter, DWORD dwFlags)
{
FIXME("(hwnd=%p, filter=%p,flags=0x%08x),\n"
"\treturns a fake device notification handle!\n", hRecepient,pNotificationFilter,dwFlags );
FIXME("(hwnd=%p, filter=%p,flags=0x%08x) returns a fake device notification handle!\n",
hRecepient,pNotificationFilter,dwFlags );
return (HDEVNOTIFY) 0xcafeaffe;
}