setupapi: Add stubs for CM_Get_Device_Interface_List_SizeA/W.
This commit is contained in:
parent
35b90ece93
commit
f272c12607
|
@ -84,8 +84,8 @@
|
|||
@ stub CM_Get_Device_Interface_ListW
|
||||
@ stub CM_Get_Device_Interface_List_ExA
|
||||
@ stub CM_Get_Device_Interface_List_ExW
|
||||
@ stub CM_Get_Device_Interface_List_SizeA
|
||||
@ stub CM_Get_Device_Interface_List_SizeW
|
||||
@ stdcall CM_Get_Device_Interface_List_SizeA(ptr ptr str long) setupapi.CM_Get_Device_Interface_List_SizeA
|
||||
@ stdcall CM_Get_Device_Interface_List_SizeW(ptr ptr wstr long) setupapi.CM_Get_Device_Interface_List_SizeW
|
||||
@ stdcall CM_Get_Device_Interface_List_Size_ExA(ptr ptr str long ptr) setupapi.CM_Get_Device_Interface_List_Size_ExA
|
||||
@ stdcall CM_Get_Device_Interface_List_Size_ExW(ptr ptr wstr long ptr) setupapi.CM_Get_Device_Interface_List_Size_ExW
|
||||
@ stub CM_Get_First_Log_Conf
|
||||
|
|
|
@ -95,8 +95,8 @@
|
|||
@ stub CM_Get_Device_Interface_ListW
|
||||
@ stub CM_Get_Device_Interface_List_ExA
|
||||
@ stub CM_Get_Device_Interface_List_ExW
|
||||
@ stub CM_Get_Device_Interface_List_SizeA
|
||||
@ stub CM_Get_Device_Interface_List_SizeW
|
||||
@ stdcall CM_Get_Device_Interface_List_SizeA(ptr ptr str long)
|
||||
@ stdcall CM_Get_Device_Interface_List_SizeW(ptr ptr wstr long)
|
||||
@ stdcall CM_Get_Device_Interface_List_Size_ExA(ptr ptr str long ptr)
|
||||
@ stdcall CM_Get_Device_Interface_List_Size_ExW(ptr ptr wstr long ptr)
|
||||
@ stub CM_Get_First_Log_Conf
|
||||
|
|
|
@ -366,6 +366,26 @@ CONFIGRET WINAPI CM_Locate_DevNode_ExW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceI
|
|||
return CR_FAILURE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_SizeA (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_SizeA(PULONG len, LPGUID class, DEVINSTID_A id,
|
||||
ULONG flags)
|
||||
{
|
||||
FIXME("%p %p %s 0x%08x: stub\n", len, class, debugstr_a(id), flags);
|
||||
return CR_FAILURE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_SizeW (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_SizeW(PULONG len, LPGUID class, DEVINSTID_W id,
|
||||
ULONG flags)
|
||||
{
|
||||
FIXME("%p %p %s 0x%08x: stub\n", len, class, debugstr_w(id), flags);
|
||||
return CR_FAILURE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_Size_ExA (SETUPAPI.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue