Stub for RegisterDeviceNotificationA.
diff --git a/windows/user.c b/windows/user.c
index aa0daea..d40a28d 100644
--- a/windows/user.c
+++ b/windows/user.c
@@ -682,3 +682,15 @@
{
FIXME_(win32)("(%08lx, %08lx)\n", flags, reserved);
}
+
+/***********************************************************************
+ * RegisterDeviceNotification (USER32.477)
+ */
+HDEVNOTIFY WINAPI RegisterDeviceNotificationA(
+ HANDLE hnd, LPVOID notifyfilter, DWORD flags
+) {
+ FIXME_(win32)("(hwnd=%08x, filter=%p,flags=0x%08lx), STUB!\n",
+ hnd,notifyfilter,flags
+ );
+ return 0;
+}