setupapi: Stub the SetupDiDestroyClassImageList function.

This commit is contained in:
Andrew Nguyen 2008-12-29 11:43:08 -06:00 committed by Alexandre Julliard
parent 3dcac86e53
commit 33197eaa8d
2 changed files with 10 additions and 1 deletions

View file

@ -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

View file

@ -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.@)
*/