Commit b072f856 authored by Louis. Lenders's avatar Louis. Lenders Committed by Alexandre Julliard

user32: Return a fake device notification handle in RegisterDeviceNotificationA.

parent 2d6b4508
......@@ -541,8 +541,9 @@ DWORD WINAPI RegisterTasklist (DWORD x)
*/
HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hnd, LPVOID notifyfilter, DWORD flags)
{
FIXME("(hwnd=%p, filter=%p,flags=0x%08x), STUB!\n", hnd,notifyfilter,flags );
return 0;
FIXME("(hwnd=%p, filter=%p,flags=0x%08x),\n\
returns a fake device notification handle!\n", hnd,notifyfilter,flags );
return (HDEVNOTIFY) 0xcafecafe;
}
/***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment