Module: wine Branch: master Commit: 1163d1c00bbd209669615b64e22d7df113961866 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1163d1c00bbd209669615b64e2...
Author: Austin English austinenglish@gmail.com Date: Fri Feb 3 21:54:14 2012 -0600
advapi32: Add a stub for RegDisableReflectionKey.
---
dlls/advapi32/advapi32.spec | 2 +- dlls/advapi32/registry.c | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/dlls/advapi32/advapi32.spec b/dlls/advapi32/advapi32.spec index 2b5db2b..87a92dc 100644 --- a/dlls/advapi32/advapi32.spec +++ b/dlls/advapi32/advapi32.spec @@ -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) diff --git a/dlls/advapi32/registry.c b/dlls/advapi32/registry.c index 758ba08..c4fef67 100644 --- a/dlls/advapi32/registry.c +++ b/dlls/advapi32/registry.c @@ -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; +}