user32: Avoid newlines inside FIXME messages.
This commit is contained in:
parent
71d7331932
commit
31ef27ed57
|
@ -539,8 +539,8 @@ DWORD WINAPI RegisterTasklist (DWORD x)
|
||||||
*/
|
*/
|
||||||
HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hnd, LPVOID notifyfilter, DWORD flags)
|
HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hnd, LPVOID notifyfilter, DWORD flags)
|
||||||
{
|
{
|
||||||
FIXME("(hwnd=%p, filter=%p,flags=0x%08x),\n"
|
FIXME("(hwnd=%p, filter=%p,flags=0x%08x) returns a fake device notification handle!\n",
|
||||||
"\treturns a fake device notification handle!\n", hnd,notifyfilter,flags );
|
hnd,notifyfilter,flags );
|
||||||
return (HDEVNOTIFY) 0xcafecafe;
|
return (HDEVNOTIFY) 0xcafecafe;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -569,8 +569,8 @@ HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hnd, LPVOID notifyfilter, D
|
||||||
*/
|
*/
|
||||||
HDEVNOTIFY WINAPI RegisterDeviceNotificationW(HANDLE hRecepient, LPVOID pNotificationFilter, DWORD dwFlags)
|
HDEVNOTIFY WINAPI RegisterDeviceNotificationW(HANDLE hRecepient, LPVOID pNotificationFilter, DWORD dwFlags)
|
||||||
{
|
{
|
||||||
FIXME("(hwnd=%p, filter=%p,flags=0x%08x),\n"
|
FIXME("(hwnd=%p, filter=%p,flags=0x%08x) returns a fake device notification handle!\n",
|
||||||
"\treturns a fake device notification handle!\n", hRecepient,pNotificationFilter,dwFlags );
|
hRecepient,pNotificationFilter,dwFlags );
|
||||||
return (HDEVNOTIFY) 0xcafeaffe;
|
return (HDEVNOTIFY) 0xcafeaffe;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue