Commit 8a044212 authored by Sylvain Petreolle's avatar Sylvain Petreolle Committed by Alexandre Julliard

setupapi: Add stub for SetupAddToSourceListW.

parent 06a0a01e
......@@ -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
......
......@@ -241,6 +241,15 @@ BOOL WINAPI SetupAddToSourceListA(DWORD flags, PCSTR source)
}
/***********************************************************************
* SetupAddToSourceListW (SETUPAPI.@)
*/
BOOL WINAPI SetupAddToSourceListW(DWORD flags, PCWSTR source)
{
FIXME("0x%08x %s\n", flags, debugstr_w(source));
return TRUE;
}
/***********************************************************************
* SetupSetSourceListA (SETUPAPI.@)
*/
BOOL WINAPI SetupSetSourceListA(DWORD flags, PCSTR *list, UINT count)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment