Commit 3d11b865 authored by Christian Gmeiner's avatar Christian Gmeiner Committed by Alexandre Julliard

setupapi: Added AssertFail stub.

parent d0db296d
...@@ -861,3 +861,19 @@ DWORD WINAPI CMP_WaitNoPendingInstallEvents( DWORD dwTimeout ) ...@@ -861,3 +861,19 @@ DWORD WINAPI CMP_WaitNoPendingInstallEvents( DWORD dwTimeout )
FIXME("%d\n", dwTimeout); FIXME("%d\n", dwTimeout);
return WAIT_OBJECT_0; return WAIT_OBJECT_0;
} }
/***********************************************************************
* AssertFail (SETUPAPI.@)
*
* Shows an assert fail error messagebox
*
* PARAMS
* lpFile [I] file where assert failed
* uLine [I] line number in file
* lpMessage [I] assert message
*
*/
void WINAPI AssertFail(LPCSTR lpFile, UINT uLine, LPCSTR lpMessage)
{
FIXME("%s %u %s\n", lpFile, uLine, lpMessage);
}
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
@ stub AddMiniIconToList @ stub AddMiniIconToList
@ stub AddTagToGroupOrderListEntry @ stub AddTagToGroupOrderListEntry
@ stub AppendStringToMultiSz @ stub AppendStringToMultiSz
@ stub AssertFail @ stdcall AssertFail(str long str)
@ stub CMP_Init_Detection @ stub CMP_Init_Detection
@ stub CMP_RegisterNotification @ stub CMP_RegisterNotification
@ stub CMP_Report_LogOn @ stub CMP_Report_LogOn
......
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