mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
setupapi: Stub the SetupDiDestroyClassImageList function.
This commit is contained in:
parent
3dcac86e53
commit
33197eaa8d
2 changed files with 10 additions and 1 deletions
|
@ -297,7 +297,7 @@
|
|||
@ stub SetupDiDeleteDeviceInterfaceData
|
||||
@ stdcall SetupDiDeleteDeviceInterfaceRegKey(ptr ptr long)
|
||||
@ stub SetupDiDeleteDeviceRegKey
|
||||
@ stub SetupDiDestroyClassImageList
|
||||
@ stdcall SetupDiDestroyClassImageList(ptr)
|
||||
@ stdcall SetupDiDestroyDeviceInfoList(long)
|
||||
@ stub SetupDiDestroyDriverInfoList
|
||||
@ stub SetupDiDrawMiniIcon
|
||||
|
|
|
@ -210,6 +210,15 @@ BOOL WINAPI SetupDiGetINFClassW(PCWSTR inf, LPGUID class_guid, PWSTR class_name,
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiDestroyClassImageList (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupDiDestroyClassImageList(PSP_CLASSIMAGELIST_DATA ClassListImageData)
|
||||
{
|
||||
FIXME("(%p) stub\n", ClassListImageData);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupPromptForDiskA (SETUPAPI.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue