setupapi: Add stub for CM_Get_Class_Registry_PropertyA.

This commit is contained in:
André Hentschel 2012-01-12 21:05:01 +01:00 committed by Alexandre Julliard
parent 0f658d9dc8
commit 0309066f15
3 changed files with 14 additions and 0 deletions

View File

@ -52,6 +52,8 @@
@ stub CM_Get_Class_NameW
@ stub CM_Get_Class_Name_ExA
@ stub CM_Get_Class_Name_ExW
@ stdcall CM_Get_Class_Registry_PropertyA(ptr long ptr ptr long long ptr) setupapi.CM_Get_Class_Registry_PropertyA
@ stub CM_Get_Class_Registry_PropertyW
@ stub CM_Get_Depth
@ stub CM_Get_Depth_Ex
@ stub CM_Get_DevNode_Registry_PropertyA

View File

@ -63,6 +63,8 @@
@ stub CM_Get_Class_NameW
@ stub CM_Get_Class_Name_ExA
@ stub CM_Get_Class_Name_ExW
@ stdcall CM_Get_Class_Registry_PropertyA(ptr long ptr ptr long long ptr)
@ stub CM_Get_Class_Registry_PropertyW
@ stub CM_Get_Depth
@ stub CM_Get_Depth_Ex
@ stub CM_Get_DevNode_Registry_PropertyA

View File

@ -387,6 +387,16 @@ CONFIGRET WINAPI CM_Enumerate_Classes(ULONG index, LPGUID class, ULONG flags)
return CR_NO_SUCH_VALUE;
}
/***********************************************************************
* CM_Get_Class_Registry_PropertyA (SETUPAPI.@)
*/
CONFIGRET WINAPI CM_Get_Class_Registry_PropertyA(LPGUID class, ULONG prop, PULONG regdatatype,
PVOID buf, ULONG len, ULONG flags, HMACHINE machine)
{
FIXME("%p %u %p %p %u 0x%08x %p: stub\n", class, prop, regdatatype, buf, len, flags, machine);
return CR_FAILURE;
}
/***********************************************************************
* CM_Set_Class_Registry_PropertyA (SETUPAPI.@)
*/