mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
- Implement CMP_RegisterNotification stubs
- Fixes audiosrv crash svn path=/trunk/; revision=39774
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
@ stub CMP_GetBlockedDriverInfo
|
||||
@ stub CMP_GetServerSideDeviceInstallFlags
|
||||
@ stdcall CMP_Init_Detection(long)
|
||||
@ stub CMP_RegisterNotification
|
||||
@ stdcall CMP_RegisterNotification( ptr ptr long ptr)
|
||||
@ stdcall CMP_Report_LogOn(long long)
|
||||
@ stub CMP_UnregisterNotification
|
||||
@ stdcall CMP_WaitNoPendingInstallEvents(long)
|
||||
|
||||
@@ -184,3 +184,23 @@ SetupDiUnremoveDevice(
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user