Commit 253e2964 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

setupapi: Add a stub implementation of CMP_WaitNoPendingInstallEvents.

parent 1f3afd4b
...@@ -853,3 +853,12 @@ void WINAPI pSetupSetGlobalFlags( DWORD flags ) ...@@ -853,3 +853,12 @@ void WINAPI pSetupSetGlobalFlags( DWORD flags )
{ {
global_flags = flags; global_flags = flags;
} }
/***********************************************************************
* CMP_WaitNoPendingInstallEvents (SETUPAPI.@)
*/
DWORD WINAPI CMP_WaitNoPendingInstallEvents( DWORD dwTimeout )
{
FIXME("%ld\n", dwTimeout);
return WAIT_OBJECT_0;
}
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
@ stub CMP_RegisterNotification @ stub CMP_RegisterNotification
@ stub CMP_Report_LogOn @ stub CMP_Report_LogOn
@ stub CMP_UnregisterNotification @ stub CMP_UnregisterNotification
@ stub CMP_WaitNoPendingInstallEvents @ stdcall CMP_WaitNoPendingInstallEvents(long)
@ stub CMP_WaitServices @ stub CMP_WaitServices
@ stub CM_Add_Empty_Log_Conf @ stub CM_Add_Empty_Log_Conf
@ stub CM_Add_Empty_Log_Conf_Ex @ stub CM_Add_Empty_Log_Conf_Ex
......
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