mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[SetupAPI] Sync to wine.
See CORE-16543.
This commit is contained in:
parent
d447b41198
commit
0785633649
2 changed files with 20 additions and 2 deletions
|
@ -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.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue