setupapi: Add stubs for SetupPromptForDiskA/W.
This commit is contained in:
parent
212ce8b6d6
commit
7e60ab10c1
@ -459,8 +459,8 @@
|
|||||||
@ stdcall SetupOpenInfFileW(wstr wstr long ptr)
|
@ stdcall SetupOpenInfFileW(wstr wstr long ptr)
|
||||||
@ stdcall SetupOpenLog(long)
|
@ stdcall SetupOpenLog(long)
|
||||||
@ stdcall SetupOpenMasterInf()
|
@ stdcall SetupOpenMasterInf()
|
||||||
@ stub SetupPromptForDiskA
|
@ stdcall SetupPromptForDiskA(ptr str str str str str long ptr long ptr)
|
||||||
@ stub SetupPromptForDiskW
|
@ stdcall SetupPromptForDiskW(ptr wstr wstr wstr wstr wstr long ptr long ptr)
|
||||||
@ stdcall SetupPromptReboot(ptr ptr long)
|
@ stdcall SetupPromptReboot(ptr ptr long)
|
||||||
@ stub SetupQueryDrivesInDiskSpaceListA
|
@ stub SetupQueryDrivesInDiskSpaceListA
|
||||||
@ stub SetupQueryDrivesInDiskSpaceListW
|
@ stub SetupQueryDrivesInDiskSpaceListW
|
||||||
|
@ -200,3 +200,31 @@ BOOL WINAPI SetupDiGetINFClassW(PCWSTR inf, LPGUID class_guid, PWSTR class_name,
|
|||||||
FIXME("%s %p %p %d %p\n", debugstr_w(inf), class_guid, class_name, size, required_size);
|
FIXME("%s %p %p %d %p\n", debugstr_w(inf), class_guid, class_name, size, required_size);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* SetupPromptForDiskA (SETUPAPI.@)
|
||||||
|
*/
|
||||||
|
UINT WINAPI SetupPromptForDiskA(HWND hwndParent, PCSTR DialogTitle, PCSTR DiskName,
|
||||||
|
PCSTR PathToSource, PCSTR FileSought, PCSTR TagFile, DWORD DiskPromptStyle,
|
||||||
|
PSTR PathBuffer, DWORD PathBufferSize, PDWORD PathRequiredSize)
|
||||||
|
{
|
||||||
|
FIXME("%p %s %s %s %s %s %d %p %d %p: stub\n", hwndParent, debugstr_a(DialogTitle),
|
||||||
|
debugstr_a(DiskName), debugstr_a(PathToSource), debugstr_a(FileSought),
|
||||||
|
debugstr_a(TagFile), DiskPromptStyle, PathBuffer, PathBufferSize,
|
||||||
|
PathRequiredSize);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* SetupPromptForDiskW (SETUPAPI.@)
|
||||||
|
*/
|
||||||
|
UINT WINAPI SetupPromptForDiskW(HWND hwndParent, PCWSTR DialogTitle, PCWSTR DiskName,
|
||||||
|
PCWSTR PathToSource, PCWSTR FileSought, PCWSTR TagFile, DWORD DiskPromptStyle,
|
||||||
|
PWSTR PathBuffer, DWORD PathBufferSize, PDWORD PathRequiredSize)
|
||||||
|
{
|
||||||
|
FIXME("%p %s %s %s %s %s %d %p %d %p: stub\n", hwndParent, debugstr_w(DialogTitle),
|
||||||
|
debugstr_w(DiskName), debugstr_w(PathToSource), debugstr_w(FileSought),
|
||||||
|
debugstr_w(TagFile), DiskPromptStyle, PathBuffer, PathBufferSize,
|
||||||
|
PathRequiredSize);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user