setuapi: Add stub for CM_Get_DevNode_Registry_Property_ExA.
This commit is contained in:
parent
33d60e9060
commit
9ea3c46e71
|
@ -56,7 +56,7 @@
|
|||
@ stub CM_Get_Depth_Ex
|
||||
@ stub CM_Get_DevNode_Registry_PropertyA
|
||||
@ stub CM_Get_DevNode_Registry_PropertyW
|
||||
@ stub CM_Get_DevNode_Registry_Property_ExA
|
||||
@ stdcall CM_Get_DevNode_Registry_Property_ExA(long long ptr ptr ptr long ptr) setupapi.CM_Get_DevNode_Registry_Property_ExA
|
||||
@ 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
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
@ stub CM_Get_Depth_Ex
|
||||
@ stub CM_Get_DevNode_Registry_PropertyA
|
||||
@ stub CM_Get_DevNode_Registry_PropertyW
|
||||
@ stub CM_Get_DevNode_Registry_Property_ExA
|
||||
@ stdcall CM_Get_DevNode_Registry_Property_ExA(long long ptr ptr ptr long ptr)
|
||||
@ 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
|
||||
|
|
|
@ -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_ExA (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_DevNode_Registry_Property_ExA(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_Get_DevNode_Registry_Property_ExW (SETUPAPI.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue