Added SetupCreateDiskSpaceList stub.
This commit is contained in:
parent
4d2cfee1fa
commit
65be0d1f50
|
@ -70,8 +70,8 @@
|
||||||
@ stub SetupCopyErrorW
|
@ stub SetupCopyErrorW
|
||||||
@ stdcall SetupCopyOEMInfA(str str long long ptr long ptr ptr)
|
@ stdcall SetupCopyOEMInfA(str str long long ptr long ptr ptr)
|
||||||
@ stub SetupCopyOEMInfW
|
@ stub SetupCopyOEMInfW
|
||||||
@ stub SetupCreateDiskSpaceListA
|
@ stdcall SetupCreateDiskSpaceListA(ptr long long)
|
||||||
@ stub SetupCreateDiskSpaceListW
|
@ stdcall SetupCreateDiskSpaceListW(ptr long long)
|
||||||
@ stub SetupDecompressOrCopyFileA
|
@ stub SetupDecompressOrCopyFileA
|
||||||
@ stub SetupDecompressOrCopyFileW
|
@ stub SetupDecompressOrCopyFileW
|
||||||
@ stub SetupDefaultQueueCallback
|
@ stub SetupDefaultQueueCallback
|
||||||
|
|
|
@ -199,3 +199,21 @@ BOOL WINAPI SetupGetInfInformationA( LPCVOID InfSpec, DWORD SearchControl,
|
||||||
InfSpec, SearchControl, ReturnBuffer, ReturnBufferSize, RequiredSize );
|
InfSpec, SearchControl, ReturnBuffer, ReturnBufferSize, RequiredSize );
|
||||||
return TRUE;
|
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;
|
||||||
|
}
|
||||||
|
|
|
@ -37,6 +37,8 @@ typedef PVOID HDEVINFO;
|
||||||
/* Define type for setup file queue */
|
/* Define type for setup file queue */
|
||||||
typedef PVOID HSPFILEQ;
|
typedef PVOID HSPFILEQ;
|
||||||
|
|
||||||
|
typedef PVOID HDSKSPC;
|
||||||
|
|
||||||
/* inf structure. */
|
/* inf structure. */
|
||||||
typedef struct _INFCONTEXT
|
typedef struct _INFCONTEXT
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue