shlwapi: add a stub for IsInternetESCEnabled

Austin English austinenglish at gmail.com
Sun Jan 27 15:04:52 CST 2013


This lets TurboTax 2012 start in win2k3 mode.

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/rsaenh/rsaenh.rgs b/dlls/rsaenh/rsaenh.rgs
index 872696c..bc4ffea 100644
--- a/dlls/rsaenh/rsaenh.rgs
+++ b/dlls/rsaenh/rsaenh.rgs
@@ -28,12 +28,6 @@ HKLM
                             val 'Signature' = b deadbeef
                             val 'Type' = d 24
                         }
-                        ForceRemove 'Microsoft Enhanced RSA and AES Cryptographic Provider (Prototype)'
-                        {
-                            val 'Image Path' = s '%MODULE%'
-                            val 'Signature' = b deadbeef
-                            val 'Type' = d 24
-                        }
                         ForceRemove 'Microsoft RSA SChannel Cryptographic Provider'
                         {
                             val 'Image Path' = s '%MODULE%'
diff --git a/dlls/shlwapi/shlwapi.spec b/dlls/shlwapi/shlwapi.spec
index bf33e62..aad095e 100644
--- a/dlls/shlwapi/shlwapi.spec
+++ b/dlls/shlwapi/shlwapi.spec
@@ -567,6 +567,7 @@
 @ stdcall IntlStrEqWorkerA(long str str long) StrIsIntlEqualA
 @ stdcall IntlStrEqWorkerW(long wstr wstr long) StrIsIntlEqualW
 @ stdcall IsCharSpaceA(long)
+@ stdcall IsInternetESCEnabled()
 @ stdcall PathAddBackslashA (str)
 @ stdcall PathAddBackslashW (wstr)
 @ stdcall PathAddExtensionA (str str)
diff --git a/dlls/shlwapi/thread.c b/dlls/shlwapi/thread.c
index eb2c35d..a60268b 100644
--- a/dlls/shlwapi/thread.c
+++ b/dlls/shlwapi/thread.c
@@ -558,3 +558,13 @@ HANDLE WINAPI SHGlobalCounterCreate (REFGUID guid)
   SHStringFromGUIDA(guid, szName, sizeof(szName) - 1);
   return SHGlobalCounterCreateNamedA(szName, 0);
 }
+
+/*************************************************************************
+ * IsInternetESCEnabled [SHLWAPI.@]
+ */
+BOOL WINAPI IsInternetESCEnabled(void)
+{
+    FIXME(": stub\n");
+    return FALSE;
+}
+


More information about the wine-patches mailing list