setupapi: Add stubs for CM_Get_Device_ID_List_SizeA/W.

This commit is contained in:
André Hentschel 2011-05-26 19:23:09 +02:00 committed by Alexandre Julliard
parent 0f0692716b
commit c6e38bfee6
3 changed files with 24 additions and 4 deletions

View File

@ -68,8 +68,8 @@
@ 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_ExW
@ stub CM_Get_Device_ID_List_SizeA
@ stub CM_Get_Device_ID_List_SizeW
@ stdcall CM_Get_Device_ID_List_SizeA(ptr str long) setupapi.CM_Get_Device_ID_List_SizeA
@ 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_ExW
@ stdcall CM_Get_Device_ID_Size(ptr ptr long) setupapi.CM_Get_Device_ID_Size

View File

@ -79,8 +79,8 @@
@ stdcall CM_Get_Device_ID_ListW(wstr ptr long long)
@ stub CM_Get_Device_ID_List_ExA
@ stub CM_Get_Device_ID_List_ExW
@ stub CM_Get_Device_ID_List_SizeA
@ stub CM_Get_Device_ID_List_SizeW
@ stdcall CM_Get_Device_ID_List_SizeA(ptr str long)
@ 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_ExW
@ stdcall CM_Get_Device_ID_Size(ptr ptr long)

View File

@ -112,6 +112,26 @@ CONFIGRET WINAPI CM_Get_Device_ID_ListW(
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.@)
*/