mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 08:06:46 +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
|
@ stub SetupAddSectionToDiskSpaceListW
|
||||||
@ stdcall SetupAddToDiskSpaceListA(long str int64 long ptr long)
|
@ stdcall SetupAddToDiskSpaceListA(long str int64 long ptr long)
|
||||||
@ stdcall SetupAddToDiskSpaceListW(long wstr int64 long ptr long)
|
@ stdcall SetupAddToDiskSpaceListW(long wstr int64 long ptr long)
|
||||||
@ stub SetupAddToSourceListA
|
@ stdcall SetupAddToSourceListA(long str)
|
||||||
@ stub SetupAddToSourceListW
|
@ stdcall SetupAddToSourceListW(long wstr)
|
||||||
@ stub SetupAdjustDiskSpaceListA
|
@ stub SetupAdjustDiskSpaceListA
|
||||||
@ stub SetupAdjustDiskSpaceListW
|
@ stub SetupAdjustDiskSpaceListW
|
||||||
@ stub SetupBackupErrorA
|
@ stub SetupBackupErrorA
|
||||||
|
|
|
@ -38,6 +38,24 @@ INT WINAPI SetupPromptReboot( HSPFILEQ file_queue, HWND owner, BOOL scan_only )
|
||||||
return 0;
|
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.@)
|
* SetupSetSourceListA (SETUPAPI.@)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue