setupapi: Added AssertFail stub.

This commit is contained in:
Christian Gmeiner 2006-11-27 14:02:53 +01:00 committed by Alexandre Julliard
parent d0db296db0
commit 3d11b8650c
2 changed files with 17 additions and 1 deletions

View File

@ -861,3 +861,19 @@ DWORD WINAPI CMP_WaitNoPendingInstallEvents( DWORD dwTimeout )
FIXME("%d\n", dwTimeout);
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);
}

View File

@ -2,7 +2,7 @@
@ stub AddMiniIconToList
@ stub AddTagToGroupOrderListEntry
@ stub AppendStringToMultiSz
@ stub AssertFail
@ stdcall AssertFail(str long str)
@ stub CMP_Init_Detection
@ stub CMP_RegisterNotification
@ stub CMP_Report_LogOn