Commit f48b9700 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

setupapi: Add stub for CM_Get_Device_Interface_Alias{A,W}.

parent 6a12d93b
......@@ -79,8 +79,8 @@
@ stub CM_Get_Device_ID_List_Size_ExW
@ stdcall CM_Get_Device_ID_Size(ptr ptr long) setupapi.CM_Get_Device_ID_Size
@ stub CM_Get_Device_ID_Size_Ex
@ stub CM_Get_Device_Interface_AliasA
@ stub CM_Get_Device_Interface_AliasW
@ stdcall CM_Get_Device_Interface_AliasA(str ptr ptr ptr long) setupapi.CM_Get_Device_Interface_AliasA
@ stdcall CM_Get_Device_Interface_AliasW(wstr ptr ptr ptr long) setupapi.CM_Get_Device_Interface_AliasW
@ stub CM_Get_Device_Interface_Alias_ExA
@ stub CM_Get_Device_Interface_Alias_ExW
@ stub CM_Get_Device_Interface_ListA
......
......@@ -89,8 +89,8 @@
@ stub CM_Get_Device_ID_List_Size_ExW
@ stdcall CM_Get_Device_ID_Size(ptr ptr long)
@ stub CM_Get_Device_ID_Size_Ex
@ stub CM_Get_Device_Interface_AliasA
@ stub CM_Get_Device_Interface_AliasW
@ stdcall CM_Get_Device_Interface_AliasA(str ptr ptr ptr long)
@ stdcall CM_Get_Device_Interface_AliasW(wstr ptr ptr ptr long)
@ stub CM_Get_Device_Interface_Alias_ExA
@ stub CM_Get_Device_Interface_Alias_ExW
@ stub CM_Get_Device_Interface_ListA
......
......@@ -392,6 +392,26 @@ CONFIGRET WINAPI CM_Get_Device_Interface_List_Size_ExW(PULONG len, LPGUID class,
}
/***********************************************************************
* CM_Get_Device_Interface_AliasA (SETUPAPI.@)
*/
CONFIGRET WINAPI CM_Get_Device_Interface_AliasA(const char *interface, GUID *class,
char *name, ULONG *len, ULONG flags)
{
FIXME("%s %p %p %p 0x%08x: stub\n", debugstr_a(interface), class, name, len, flags);
return CR_FAILURE;
}
/***********************************************************************
* CM_Get_Device_Interface_AliasW (SETUPAPI.@)
*/
CONFIGRET WINAPI CM_Get_Device_Interface_AliasW(const WCHAR *interface, GUID *class,
WCHAR *name, ULONG *len, ULONG flags)
{
FIXME("%s %p %p %p 0x%08x: stub\n", debugstr_w(interface), class, name, len, flags);
return CR_FAILURE;
}
/***********************************************************************
* CM_Get_DevNode_Registry_Property_ExA (SETUPAPI.@)
*/
CONFIGRET WINAPI CM_Get_DevNode_Registry_Property_ExA(DEVINST dev, ULONG prop, PULONG regdatatype,
......
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