Skip to content

Commit d38c74f

Browse files
committed
[SETUPAPI] sync diskspace.c with wine 1.9.16
svn path=/trunk/; revision=72640
1 parent e0009ad commit d38c74f

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

reactos/dll/win32/setupapi/diskspace.c

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,3 +248,27 @@ BOOL WINAPI SetupDestroyDiskSpaceList(HDSKSPC DiskSpace)
248248
HeapFree(GetProcessHeap(),0,list);
249249
return TRUE;
250250
}
251+
252+
/***********************************************************************
253+
* SetupAddToDiskSpaceListA (SETUPAPI.@)
254+
*/
255+
BOOL WINAPI SetupAddToDiskSpaceListA(HDSKSPC diskspace, PCSTR targetfile,
256+
LONGLONG filesize, UINT operation,
257+
PVOID reserved1, UINT reserved2)
258+
{
259+
FIXME(": stub\n");
260+
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
261+
return FALSE;
262+
}
263+
264+
/***********************************************************************
265+
* SetupAddToDiskSpaceListW (SETUPAPI.@)
266+
*/
267+
BOOL WINAPI SetupAddToDiskSpaceListW(HDSKSPC diskspace, PCWSTR targetfile,
268+
LONGLONG filesize, UINT operation,
269+
PVOID reserved1, UINT reserved2)
270+
{
271+
FIXME(": stub\n");
272+
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
273+
return FALSE;
274+
}

reactos/dll/win32/setupapi/setupapi.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@
221221
@ stub SetupAddInstallSectionToDiskSpaceListW
222222
@ stdcall -stub SetupAddSectionToDiskSpaceListA(long long long str long ptr long)
223223
@ stub SetupAddSectionToDiskSpaceListW
224-
@ stdcall -stub SetupAddToDiskSpaceListA(long str double long ptr long)
225-
@ stub SetupAddToDiskSpaceListW
224+
@ stdcall SetupAddToDiskSpaceListA(long str int64 long ptr long)
225+
@ stdcall SetupAddToDiskSpaceListW(long wstr int64 long ptr long)
226226
@ stub SetupAddToSourceListA
227227
@ stub SetupAddToSourceListW
228228
@ stub SetupAdjustDiskSpaceListA

0 commit comments

Comments
 (0)