Commit 521d067b authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

SetupSetFileQueueAlternatePlatform{AW} implemented as stub.

parent 1b578af4
...@@ -1268,6 +1268,26 @@ BOOL WINAPI SetupSetFileQueueFlags( HSPFILEQ handle, DWORD mask, DWORD flags ) ...@@ -1268,6 +1268,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.@) * SetupInitDefaultQueueCallback (SETUPAPI.@)
*/ */
PVOID WINAPI SetupInitDefaultQueueCallback( HWND owner ) PVOID WINAPI SetupInitDefaultQueueCallback( HWND owner )
......
...@@ -383,8 +383,6 @@ ...@@ -383,8 +383,6 @@
@ stub SetupDiUnremoveDevice @ stub SetupDiUnremoveDevice
@ stub SetupDuplicateDiskSpaceListA @ stub SetupDuplicateDiskSpaceListA
@ stub SetupDuplicateDiskSpaceListW @ stub SetupDuplicateDiskSpaceListW
@ stub SetupFileQueueAlternatePlatformA
@ stub SetupFileQueueAlternatePlatformW
@ stdcall SetupFindFirstLineA(long str str ptr) @ stdcall SetupFindFirstLineA(long str str ptr)
@ stdcall SetupFindFirstLineW(long wstr wstr ptr) @ stdcall SetupFindFirstLineW(long wstr wstr ptr)
@ stdcall SetupFindNextLine(ptr ptr) @ stdcall SetupFindNextLine(ptr ptr)
...@@ -504,6 +502,8 @@ ...@@ -504,6 +502,8 @@
@ stub SetupSetDirectoryIdExA @ stub SetupSetDirectoryIdExA
@ stub SetupSetDirectoryIdExW @ stub SetupSetDirectoryIdExW
@ stdcall SetupSetDirectoryIdW(long long wstr) @ stdcall SetupSetDirectoryIdW(long long wstr)
@ stdcall SetupSetFileQueueAlternatePlatformA(ptr ptr str)
@ stdcall SetupSetFileQueueAlternatePlatformW(ptr ptr wstr)
@ stdcall SetupSetFileQueueFlags(long long long) @ stdcall SetupSetFileQueueFlags(long long long)
@ stub SetupSetPlatformPathOverrideA @ stub SetupSetPlatformPathOverrideA
@ stub SetupSetPlatformPathOverrideW @ stub SetupSetPlatformPathOverrideW
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment