mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[SETUPAPI] sync diskspace.c with wine 1.9.16
svn path=/trunk/; revision=72640
This commit is contained in:
parent
e0009ad353
commit
d38c74fa76
2 changed files with 26 additions and 2 deletions
|
@ -248,3 +248,27 @@ BOOL WINAPI SetupDestroyDiskSpaceList(HDSKSPC DiskSpace)
|
|||
HeapFree(GetProcessHeap(),0,list);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupAddToDiskSpaceListA (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupAddToDiskSpaceListA(HDSKSPC diskspace, PCSTR targetfile,
|
||||
LONGLONG filesize, UINT operation,
|
||||
PVOID reserved1, UINT reserved2)
|
||||
{
|
||||
FIXME(": stub\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupAddToDiskSpaceListW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupAddToDiskSpaceListW(HDSKSPC diskspace, PCWSTR targetfile,
|
||||
LONGLONG filesize, UINT operation,
|
||||
PVOID reserved1, UINT reserved2)
|
||||
{
|
||||
FIXME(": stub\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -221,8 +221,8 @@
|
|||
@ stub SetupAddInstallSectionToDiskSpaceListW
|
||||
@ stdcall -stub SetupAddSectionToDiskSpaceListA(long long long str long ptr long)
|
||||
@ stub SetupAddSectionToDiskSpaceListW
|
||||
@ stdcall -stub SetupAddToDiskSpaceListA(long str double long ptr long)
|
||||
@ stub SetupAddToDiskSpaceListW
|
||||
@ stdcall SetupAddToDiskSpaceListA(long str int64 long ptr long)
|
||||
@ stdcall SetupAddToDiskSpaceListW(long wstr int64 long ptr long)
|
||||
@ stub SetupAddToSourceListA
|
||||
@ stub SetupAddToSourceListW
|
||||
@ stub SetupAdjustDiskSpaceListA
|
||||
|
|
Loading…
Reference in a new issue