Commit 1163d1c0 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

advapi32: Add a stub for RegDisableReflectionKey.

parent 902d619d
......@@ -596,7 +596,7 @@
@ stdcall RegDeleteValueW(long wstr)
@ stdcall RegDisablePredefinedCache()
# @ stub RegDisablePredefinedCacheEx
# @ stub RegDisableReflectionKey
@ stdcall RegDisableReflectionKey(ptr)
# @ stub RegEnableReflectionKey
@ stdcall RegEnumKeyA(long long ptr long)
@ stdcall RegEnumKeyExA(long long ptr ptr ptr ptr ptr ptr)
......
......@@ -2909,3 +2909,13 @@ LSTATUS WINAPI RegDeleteTreeA(HKEY hKey, LPCSTR lpszSubKey)
RtlFreeUnicodeString( &lpszSubKeyW );
return ret;
}
/******************************************************************************
* RegDisableReflectionKey [ADVAPI32.@]
*
*/
LONG WINAPI RegDisableReflectionKey(HKEY base)
{
FIXME("%p: stub\n", base);
return ERROR_SUCCESS;
}
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