Commit c77ba713 authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

setupapi: Correct function parameter for CM_Set_Class_Registry_PropertyA/W.

parent a37c4262
......@@ -513,7 +513,7 @@ CONFIGRET WINAPI CM_Reenumerate_DevNode_Ex(DEVINST dnDevInst, ULONG ulFlags, HMA
/***********************************************************************
* CM_Set_Class_Registry_PropertyA (SETUPAPI.@)
*/
CONFIGRET WINAPI CM_Set_Class_Registry_PropertyA(LPGUID class, ULONG prop, PVOID buf, ULONG len,
CONFIGRET WINAPI CM_Set_Class_Registry_PropertyA(LPGUID class, ULONG prop, LPCVOID buf, ULONG len,
ULONG flags, HMACHINE machine)
{
FIXME("%p %u %p %u 0x%08x %p: stub\n", class, prop, buf, len, flags, machine);
......@@ -523,7 +523,7 @@ CONFIGRET WINAPI CM_Set_Class_Registry_PropertyA(LPGUID class, ULONG prop, PVOID
/***********************************************************************
* CM_Set_Class_Registry_PropertyW (SETUPAPI.@)
*/
CONFIGRET WINAPI CM_Set_Class_Registry_PropertyW(LPGUID class, ULONG prop, PVOID buf, ULONG len,
CONFIGRET WINAPI CM_Set_Class_Registry_PropertyW(LPGUID class, ULONG prop, LPCVOID buf, ULONG len,
ULONG flags, HMACHINE machine)
{
FIXME("%p %u %p %u 0x%08x %p: stub\n", class, prop, buf, len, flags, machine);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment