mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 08:17:09 +08:00
[SetupAPI] Sync to wine.
See CORE-16543.
This commit is contained in:
@@ -223,8 +223,8 @@
|
||||
@ stub SetupAddSectionToDiskSpaceListW
|
||||
@ stdcall SetupAddToDiskSpaceListA(long str int64 long ptr long)
|
||||
@ stdcall SetupAddToDiskSpaceListW(long wstr int64 long ptr long)
|
||||
@ stub SetupAddToSourceListA
|
||||
@ stub SetupAddToSourceListW
|
||||
@ stdcall SetupAddToSourceListA(long str)
|
||||
@ stdcall SetupAddToSourceListW(long wstr)
|
||||
@ stub SetupAdjustDiskSpaceListA
|
||||
@ stub SetupAdjustDiskSpaceListW
|
||||
@ stub SetupBackupErrorA
|
||||
|
||||
@@ -38,6 +38,24 @@ INT WINAPI SetupPromptReboot( HSPFILEQ file_queue, HWND owner, BOOL scan_only )
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupAddToSourceListA (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupAddToSourceListA(DWORD flags, PCSTR source)
|
||||
{
|
||||
FIXME("0x%08x %s: stub\n", flags, debugstr_a(source));
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupAddToSourceListW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupAddToSourceListW(DWORD flags, PCWSTR source)
|
||||
{
|
||||
FIXME("0x%08x %s: stub\n", flags, debugstr_w(source));
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupSetSourceListA (SETUPAPI.@)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user