Commit b83de4ad authored by Martin Profittlich's avatar Martin Profittlich Committed by Alexandre Julliard

user32: Make RegisterDeviceNotificationW behave likeRegisterDeviceNotificationA.

parent fb62d061
......@@ -564,8 +564,9 @@ 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), STUB!\n", hRecepient,pNotificationFilter,dwFlags );
return 0;
FIXME("(hwnd=%p, filter=%p,flags=0x%08x),\n"
"\treturns a fake device notification handle!\n", hRecepient,pNotificationFilter,dwFlags );
return (HDEVNOTIFY) 0xcafeaffe;
}
/***********************************************************************
......
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