setuapi: Add stub for CM_Set_Class_Registry_PropertyA.
This commit is contained in:
parent
913fb67a5b
commit
ed4b8cb617
|
@ -156,6 +156,8 @@
|
|||
@ stub CM_Reset_Children_Marks_Ex
|
||||
@ stub CM_Run_Detection
|
||||
@ stub CM_Run_Detection_Ex
|
||||
@ stdcall CM_Set_Class_Registry_PropertyA(ptr long ptr long long ptr) setupapi.CM_Set_Class_Registry_PropertyA
|
||||
@ stub CM_Set_Class_Registry_PropertyW
|
||||
@ stub CM_Set_DevNode_Problem
|
||||
@ stub CM_Set_DevNode_Problem_Ex
|
||||
@ stub CM_Set_DevNode_Registry_PropertyA
|
||||
|
|
|
@ -173,6 +173,8 @@
|
|||
@ stub CM_Reset_Children_Marks_Ex
|
||||
@ stub CM_Run_Detection
|
||||
@ stub CM_Run_Detection_Ex
|
||||
@ stdcall CM_Set_Class_Registry_PropertyA(ptr long ptr long long ptr)
|
||||
@ stub CM_Set_Class_Registry_PropertyW
|
||||
@ stub CM_Set_DevNode_Problem
|
||||
@ stub CM_Set_DevNode_Problem_Ex
|
||||
@ stub CM_Set_DevNode_Registry_PropertyA
|
||||
|
|
|
@ -377,6 +377,16 @@ CONFIGRET WINAPI CM_Enumerate_Classes(ULONG index, LPGUID class, ULONG flags)
|
|||
return CR_NO_SUCH_VALUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Set_Class_Registry_PropertyA (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Set_Class_Registry_PropertyA(LPGUID class, ULONG prop, PVOID buf, ULONG len,
|
||||
ULONG flags, HMACHINE machine)
|
||||
{
|
||||
FIXME("%p %u %p %u 0x%08x %p: stub\n", class, prop, buf, len, flags, machine);
|
||||
return CR_FAILURE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupLogFileW (SETUPAPI.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue