setupapi: Add a stub implementation for RegistryDelnode.

This commit is contained in:
Mike McCormack 2006-04-04 21:04:32 +09:00 committed by Alexandre Julliard
parent 9ae3f1dcfe
commit 07e9ec46ef
2 changed files with 10 additions and 1 deletions

View File

@ -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

View File

@ -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;
}