setupapi: Add a stub implementation for RegistryDelnode.
This commit is contained in:
parent
9ae3f1dcfe
commit
07e9ec46ef
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue