setupapi: Add stubs for CM_Get_Device_ID_List_SizeA/W.
This commit is contained in:
parent
0f0692716b
commit
c6e38bfee6
|
@ -68,8 +68,8 @@
|
||||||
@ stdcall CM_Get_Device_ID_ListW(wstr ptr long long) setupapi.CM_Get_Device_ID_ListW
|
@ stdcall CM_Get_Device_ID_ListW(wstr ptr long long) setupapi.CM_Get_Device_ID_ListW
|
||||||
@ stub CM_Get_Device_ID_List_ExA
|
@ stub CM_Get_Device_ID_List_ExA
|
||||||
@ stub CM_Get_Device_ID_List_ExW
|
@ stub CM_Get_Device_ID_List_ExW
|
||||||
@ stub CM_Get_Device_ID_List_SizeA
|
@ stdcall CM_Get_Device_ID_List_SizeA(ptr str long) setupapi.CM_Get_Device_ID_List_SizeA
|
||||||
@ stub CM_Get_Device_ID_List_SizeW
|
@ stdcall CM_Get_Device_ID_List_SizeW(ptr wstr long) setupapi.CM_Get_Device_ID_List_SizeW
|
||||||
@ stub CM_Get_Device_ID_List_Size_ExA
|
@ stub CM_Get_Device_ID_List_Size_ExA
|
||||||
@ stub CM_Get_Device_ID_List_Size_ExW
|
@ stub CM_Get_Device_ID_List_Size_ExW
|
||||||
@ stdcall CM_Get_Device_ID_Size(ptr ptr long) setupapi.CM_Get_Device_ID_Size
|
@ stdcall CM_Get_Device_ID_Size(ptr ptr long) setupapi.CM_Get_Device_ID_Size
|
||||||
|
|
|
@ -79,8 +79,8 @@
|
||||||
@ stdcall CM_Get_Device_ID_ListW(wstr ptr long long)
|
@ stdcall CM_Get_Device_ID_ListW(wstr ptr long long)
|
||||||
@ stub CM_Get_Device_ID_List_ExA
|
@ stub CM_Get_Device_ID_List_ExA
|
||||||
@ stub CM_Get_Device_ID_List_ExW
|
@ stub CM_Get_Device_ID_List_ExW
|
||||||
@ stub CM_Get_Device_ID_List_SizeA
|
@ stdcall CM_Get_Device_ID_List_SizeA(ptr str long)
|
||||||
@ stub CM_Get_Device_ID_List_SizeW
|
@ stdcall CM_Get_Device_ID_List_SizeW(ptr wstr long)
|
||||||
@ stub CM_Get_Device_ID_List_Size_ExA
|
@ stub CM_Get_Device_ID_List_Size_ExA
|
||||||
@ stub CM_Get_Device_ID_List_Size_ExW
|
@ stub CM_Get_Device_ID_List_Size_ExW
|
||||||
@ stdcall CM_Get_Device_ID_Size(ptr ptr long)
|
@ stdcall CM_Get_Device_ID_Size(ptr ptr long)
|
||||||
|
|
|
@ -112,6 +112,26 @@ CONFIGRET WINAPI CM_Get_Device_ID_ListW(
|
||||||
return CR_SUCCESS;
|
return CR_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* CM_Get_Device_ID_List_SizeA (SETUPAPI.@)
|
||||||
|
*/
|
||||||
|
CONFIGRET WINAPI CM_Get_Device_ID_List_SizeA( PULONG pulLen, PCSTR pszFilter, ULONG ulFlags )
|
||||||
|
{
|
||||||
|
FIXME("%p %s 0x%08x\n", pulLen, debugstr_a(pszFilter), ulFlags);
|
||||||
|
|
||||||
|
return CR_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* CM_Get_Device_ID_List_SizeW (SETUPAPI.@)
|
||||||
|
*/
|
||||||
|
CONFIGRET WINAPI CM_Get_Device_ID_List_SizeW( PULONG pulLen, PCWSTR pszFilter, ULONG ulFlags )
|
||||||
|
{
|
||||||
|
FIXME("%p %s 0x%08x\n", pulLen, debugstr_w(pszFilter), ulFlags);
|
||||||
|
|
||||||
|
return CR_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* CM_Get_Parent (SETUPAPI.@)
|
* CM_Get_Parent (SETUPAPI.@)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue