Commit 07e9ec46 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

setupapi: Add a stub implementation for RegistryDelnode.

parent 9ae3f1dc
......@@ -228,7 +228,7 @@
@ stub QueryMultiSzValueToArray
@ stdcall QueryRegistryValue(long wstr ptr ptr ptr)
@ stub ReadAsciiOrUnicodeTextFile
@ stub RegistryDelnode
@ stdcall RegistryDelnode(long long)
@ stdcall RetreiveFileSecurity(wstr ptr)
@ stub RetrieveServiceConfig
@ stub SearchForInfFile
......
......@@ -176,3 +176,12 @@ BOOL WINAPI SetupTerminateFileLog(HANDLE FileLogHandle)
FIXME ("Stub %p\n",FileLogHandle);
return TRUE;
}
/***********************************************************************
* RegistryDelnode(SETUPAPI.@)
*/
BOOL WINAPI RegistryDelnode(DWORD x, DWORD y)
{
FIXME("%08lx %08lx: stub\n", x, y);
return FALSE;
}
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