SetupSetFileQueueAlternatePlatform{AW} implemented as stub.
This commit is contained in:
parent
1b578af404
commit
521d067ba9
|
@ -1267,6 +1267,26 @@ BOOL WINAPI SetupSetFileQueueFlags( HSPFILEQ handle, DWORD mask, DWORD flags )
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* SetupSetFileQueueAlternatePlatformA (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupSetFileQueueAlternatePlatformA(HSPFILEQ handle, PSP_ALTPLATFORM_INFO platform, PCSTR catalogfile)
|
||||
{
|
||||
FIXME("(%p, %p, %s) stub!\n", handle, platform, debugstr_a(catalogfile));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* SetupSetFileQueueAlternatePlatformW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupSetFileQueueAlternatePlatformW(HSPFILEQ handle, PSP_ALTPLATFORM_INFO platform, PCWSTR catalogfile)
|
||||
{
|
||||
FIXME("(%p, %p, %s) stub!\n", handle, platform, debugstr_w(catalogfile));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* SetupInitDefaultQueueCallback (SETUPAPI.@)
|
||||
*/
|
||||
|
|
|
@ -383,8 +383,6 @@
|
|||
@ stub SetupDiUnremoveDevice
|
||||
@ stub SetupDuplicateDiskSpaceListA
|
||||
@ stub SetupDuplicateDiskSpaceListW
|
||||
@ stub SetupFileQueueAlternatePlatformA
|
||||
@ stub SetupFileQueueAlternatePlatformW
|
||||
@ stdcall SetupFindFirstLineA(long str str ptr)
|
||||
@ stdcall SetupFindFirstLineW(long wstr wstr ptr)
|
||||
@ stdcall SetupFindNextLine(ptr ptr)
|
||||
|
@ -504,6 +502,8 @@
|
|||
@ stub SetupSetDirectoryIdExA
|
||||
@ stub SetupSetDirectoryIdExW
|
||||
@ stdcall SetupSetDirectoryIdW(long long wstr)
|
||||
@ stdcall SetupSetFileQueueAlternatePlatformA(ptr ptr str)
|
||||
@ stdcall SetupSetFileQueueAlternatePlatformW(ptr ptr wstr)
|
||||
@ stdcall SetupSetFileQueueFlags(long long long)
|
||||
@ stub SetupSetPlatformPathOverrideA
|
||||
@ stub SetupSetPlatformPathOverrideW
|
||||
|
|
Loading…
Reference in New Issue