mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
setupapi: Add stub for SetupAddToSourceListW.
This commit is contained in:
parent
06a0a01e18
commit
8a04421244
2 changed files with 10 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue