[pkg-wine-party] [SCM] Debian Wine packaging branch, wheezy, updated. wine-1.4-7-302-gb61b690

Alexandre Julliard julliard at winehq.org
Sun Jun 17 20:04:14 UTC 2012


The following commit has been merged in the wheezy branch:
commit 97bba16bf162322b770c38889b2d200989604ce2
Author: Austin English <austinenglish at gmail.com>
Date:   Fri Feb 3 21:54:14 2012 -0600

    advapi32: Add a stub for RegDisableReflectionKey.
    (cherry picked from commit 1163d1c00bbd209669615b64e22d7df113961866)

diff --git a/dlls/advapi32/advapi32.spec b/dlls/advapi32/advapi32.spec
index e6f6b7b..638cba1 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;
+}

-- 
Debian Wine packaging



More information about the pkg-wine-party mailing list