mirror of
https://github.com/reactos/reactos.git
synced 2025-05-14 23:03:53 +00:00
- Implement CMP_RegisterNotification stubs
- Fixes audiosrv crash svn path=/trunk/; revision=39774
This commit is contained in:
parent
7183be3ead
commit
61efbfa491
2 changed files with 21 additions and 1 deletions
reactos/dll/win32/setupapi
|
@ -2,7 +2,7 @@
|
||||||
@ stub CMP_GetBlockedDriverInfo
|
@ stub CMP_GetBlockedDriverInfo
|
||||||
@ stub CMP_GetServerSideDeviceInstallFlags
|
@ stub CMP_GetServerSideDeviceInstallFlags
|
||||||
@ stdcall CMP_Init_Detection(long)
|
@ stdcall CMP_Init_Detection(long)
|
||||||
@ stub CMP_RegisterNotification
|
@ stdcall CMP_RegisterNotification( ptr ptr long ptr)
|
||||||
@ stdcall CMP_Report_LogOn(long long)
|
@ stdcall CMP_Report_LogOn(long long)
|
||||||
@ stub CMP_UnregisterNotification
|
@ stub CMP_UnregisterNotification
|
||||||
@ stdcall CMP_WaitNoPendingInstallEvents(long)
|
@ stdcall CMP_WaitNoPendingInstallEvents(long)
|
||||||
|
|
|
@ -184,3 +184,23 @@ SetupDiUnremoveDevice(
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* CMP_RegisterNotification(SETUPAPI.@)
|
||||||
|
*/
|
||||||
|
CONFIGRET
|
||||||
|
WINAPI
|
||||||
|
CMP_RegisterNotification(
|
||||||
|
IN HANDLE hRecipient,
|
||||||
|
IN LPVOID lpvNotificationFilter,
|
||||||
|
IN DWORD dwFlags,
|
||||||
|
OUT PULONG pluhDevNotify)
|
||||||
|
{
|
||||||
|
FIXME ("Stub %p %p %lu %p\n", hRecipient, lpvNotificationFilter, dwFlags, pluhDevNotify);
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return CR_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue