setupapi: Add stub for CM_Get_DevNode_Registry_Property_ExW.

This commit is contained in:
André Hentschel 2012-01-09 23:07:10 +01:00 committed by Alexandre Julliard
parent 3ebb878470
commit c83b67bc4f
3 changed files with 12 additions and 2 deletions

View File

@ -57,7 +57,7 @@
@ stub CM_Get_DevNode_Registry_PropertyA
@ stub CM_Get_DevNode_Registry_PropertyW
@ stub CM_Get_DevNode_Registry_Property_ExA
@ stub CM_Get_DevNode_Registry_Property_ExW
@ stdcall CM_Get_DevNode_Registry_Property_ExW(long long ptr ptr ptr long ptr) setupapi.CM_Get_DevNode_Registry_Property_ExW
@ stub CM_Get_DevNode_Status
@ stub CM_Get_DevNode_Status_Ex
@ stdcall CM_Get_Device_IDA(ptr ptr long long) setupapi.CM_Get_Device_IDA

View File

@ -68,7 +68,7 @@
@ stub CM_Get_DevNode_Registry_PropertyA
@ stub CM_Get_DevNode_Registry_PropertyW
@ stub CM_Get_DevNode_Registry_Property_ExA
@ stub CM_Get_DevNode_Registry_Property_ExW
@ stdcall CM_Get_DevNode_Registry_Property_ExW(long long ptr ptr ptr long ptr)
@ stub CM_Get_DevNode_Status
@ stub CM_Get_DevNode_Status_Ex
@ stdcall CM_Get_Device_IDA(ptr ptr long long)

View File

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