setupx.dll16: Add DiBuildDriverIndex stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
bda46cc6fd
commit
296ac8cf32
|
@ -205,7 +205,7 @@
|
|||
409 stub IPGETDRIVERVERSION
|
||||
410 stub IpGetVersionString #(str str ptr word str)
|
||||
411 pascal VcpExplain(ptr long) VcpExplain16
|
||||
412 stub DiBuildDriverIndex #(word)
|
||||
412 pascal DiBuildDriverIndex(word) DiBuildDriverIndex16
|
||||
413 stub DiAddSingleInfToDrvIdx #(str word word)
|
||||
414 stub FCEGETFLAGS
|
||||
450 stub UiMakeDlgNonBold #(word)
|
||||
|
|
|
@ -628,3 +628,12 @@ RETERR16 WINAPI CtlSetLddPath16(LOGDISKID16 ldid, LPSTR szPath)
|
|||
ldd.pszPath = szPath;
|
||||
return CtlSetLdd16(&ldd);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* DiBuildDriverIndex (SETUPX.412)
|
||||
*/
|
||||
RETERR16 WINAPI DiBuildDriverIndex16( WORD w1 )
|
||||
{
|
||||
FIXME( "%x: stub\n", w1 );
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue