setupapi: Add stub for SetupAddToSourceListW.

This commit is contained in:
Sylvain Petreolle 2012-12-08 18:40:37 +01:00 committed by Alexandre Julliard
parent 06a0a01e18
commit 8a04421244
2 changed files with 10 additions and 1 deletions

View File

@ -249,7 +249,7 @@
@ stdcall SetupAddToDiskSpaceListA(long str int64 long ptr long)
@ stdcall SetupAddToDiskSpaceListW(long wstr int64 long ptr long)
@ stdcall SetupAddToSourceListA(long str)
@ stub SetupAddToSourceListW
@ stdcall SetupAddToSourceListW(long wstr)
@ stub SetupAdjustDiskSpaceListA
@ stub SetupAdjustDiskSpaceListW
@ stub SetupCancelTemporarySourceList

View File

@ -240,6 +240,15 @@ BOOL WINAPI SetupAddToSourceListA(DWORD flags, PCSTR source)
return TRUE;
}
/***********************************************************************
* SetupAddToSourceListW (SETUPAPI.@)
*/
BOOL WINAPI SetupAddToSourceListW(DWORD flags, PCWSTR source)
{
FIXME("0x%08x %s\n", flags, debugstr_w(source));
return TRUE;
}
/***********************************************************************
* SetupSetSourceListA (SETUPAPI.@)
*/