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 @@ ...@@ -596,7 +596,7 @@
@ stdcall RegDeleteValueW(long wstr) @ stdcall RegDeleteValueW(long wstr)
@ stdcall RegDisablePredefinedCache() @ stdcall RegDisablePredefinedCache()
# @ stub RegDisablePredefinedCacheEx # @ stub RegDisablePredefinedCacheEx
# @ stub RegDisableReflectionKey @ stdcall RegDisableReflectionKey(ptr)
# @ stub RegEnableReflectionKey # @ stub RegEnableReflectionKey
@ stdcall RegEnumKeyA(long long ptr long) @ stdcall RegEnumKeyA(long long ptr long)
@ stdcall RegEnumKeyExA(long long ptr ptr ptr ptr ptr ptr) @ stdcall RegEnumKeyExA(long long ptr ptr ptr ptr ptr ptr)
......
...@@ -2909,3 +2909,13 @@ LSTATUS WINAPI RegDeleteTreeA(HKEY hKey, LPCSTR lpszSubKey) ...@@ -2909,3 +2909,13 @@ LSTATUS WINAPI RegDeleteTreeA(HKEY hKey, LPCSTR lpszSubKey)
RtlFreeUnicodeString( &lpszSubKeyW ); RtlFreeUnicodeString( &lpszSubKeyW );
return ret; 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