setupapi: Correct function parameter for CM_Set_Class_Registry_PropertyA/W.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47249 Signed-off-by: Fabian Maurer <dark.shadow4@web.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a37c4262e9
commit
c77ba713d2
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue