From 65be0d1f50b42d73f57c3efed337a80bb325a594 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Mon, 15 Mar 2004 20:07:25 +0000 Subject: [PATCH] Added SetupCreateDiskSpaceList stub. --- dlls/setupapi/setupapi.spec | 4 ++-- dlls/setupapi/stubs.c | 18 ++++++++++++++++++ include/setupapi.h | 2 ++ 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/dlls/setupapi/setupapi.spec b/dlls/setupapi/setupapi.spec index 8ff9337cd2e..2eb7deb3103 100644 --- a/dlls/setupapi/setupapi.spec +++ b/dlls/setupapi/setupapi.spec @@ -70,8 +70,8 @@ @ stub SetupCopyErrorW @ stdcall SetupCopyOEMInfA(str str long long ptr long ptr ptr) @ stub SetupCopyOEMInfW -@ stub SetupCreateDiskSpaceListA -@ stub SetupCreateDiskSpaceListW +@ stdcall SetupCreateDiskSpaceListA(ptr long long) +@ stdcall SetupCreateDiskSpaceListW(ptr long long) @ stub SetupDecompressOrCopyFileA @ stub SetupDecompressOrCopyFileW @ stub SetupDefaultQueueCallback diff --git a/dlls/setupapi/stubs.c b/dlls/setupapi/stubs.c index f9d8beca4f4..094ac4b2d27 100644 --- a/dlls/setupapi/stubs.c +++ b/dlls/setupapi/stubs.c @@ -199,3 +199,21 @@ BOOL WINAPI SetupGetInfInformationA( LPCVOID InfSpec, DWORD SearchControl, InfSpec, SearchControl, ReturnBuffer, ReturnBufferSize, RequiredSize ); return TRUE; } + +/*********************************************************************** + * SetupCreateDiskSpaceListA (SETUPAPI.@) + */ +HDSKSPC SetupCreateDiskSpaceListA( PVOID Reserved1, DWORD Reserved2, UINT Flags ) +{ + FIXME("%08x\n", Flags); + return NULL; +} + +/*********************************************************************** + * SetupCreateDiskSpaceListA (SETUPAPI.@) + */ +HDSKSPC SetupCreateDiskSpaceListW( PVOID Reserved1, DWORD Reserved2, UINT Flags ) +{ + FIXME("%08x\n", Flags); + return NULL; +} diff --git a/include/setupapi.h b/include/setupapi.h index fe92dd0d504..f0835583e9b 100644 --- a/include/setupapi.h +++ b/include/setupapi.h @@ -37,6 +37,8 @@ typedef PVOID HDEVINFO; /* Define type for setup file queue */ typedef PVOID HSPFILEQ; +typedef PVOID HDSKSPC; + /* inf structure. */ typedef struct _INFCONTEXT {