user32: Make RegisterDeviceNotificationW behave likeRegisterDeviceNotificationA.
This commit is contained in:
parent
fb62d06151
commit
b83de4adef
|
@ -564,8 +564,9 @@ 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), STUB!\n", hRecepient,pNotificationFilter,dwFlags );
|
FIXME("(hwnd=%p, filter=%p,flags=0x%08x),\n"
|
||||||
return 0;
|
"\treturns a fake device notification handle!\n", hRecepient,pNotificationFilter,dwFlags );
|
||||||
|
return (HDEVNOTIFY) 0xcafeaffe;
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
|
|
Loading…
Reference in New Issue