setupapi: Added AssertFail stub.
This commit is contained in:
parent
d0db296db0
commit
3d11b8650c
|
@ -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 @@
|
||||||
@ 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
|
||||||
|
|
Loading…
Reference in New Issue