[PATCH] msxml3: SchemaCache_version() is unused so remove it.

Francois Gouget fgouget at free.fr
Fri Aug 27 05:56:41 CDT 2021


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
In fact I cannot find any trace of it ever being used.
So either it is not needed and should be removed per this patch, or 
there is some code that's missing.
---
 dlls/msxml3/main.c          | 12 ------------
 dlls/msxml3/msxml_private.h |  1 -
 2 files changed, 13 deletions(-)

diff --git a/dlls/msxml3/main.c b/dlls/msxml3/main.c
index c11f662eec3..25d402efd20 100644
--- a/dlls/msxml3/main.c
+++ b/dlls/msxml3/main.c
@@ -406,18 +406,6 @@ const CLSID* DOMDocument_version(MSXML_VERSION v)
     }
 }
 
-const CLSID* SchemaCache_version(MSXML_VERSION v)
-{
-    switch (v)
-    {
-    default:
-    case MSXML_DEFAULT: return &CLSID_XMLSchemaCache;
-    case MSXML3: return &CLSID_XMLSchemaCache30;
-    case MSXML4: return &CLSID_XMLSchemaCache40;
-    case MSXML6: return &CLSID_XMLSchemaCache60;
-    }
-}
-
 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID reserved)
 {
     MSXML_hInstance = hInstDLL;
diff --git a/dlls/msxml3/msxml_private.h b/dlls/msxml3/msxml_private.h
index 29b1156775c..f16040f3542 100644
--- a/dlls/msxml3/msxml_private.h
+++ b/dlls/msxml3/msxml_private.h
@@ -34,7 +34,6 @@
 #endif
 
 extern const CLSID * DOMDocument_version(MSXML_VERSION v) DECLSPEC_HIDDEN;
-extern const CLSID * SchemaCache_version(MSXML_VERSION v) DECLSPEC_HIDDEN;
 
 
 /* The XDR datatypes (urn:schemas-microsoft-com:datatypes)
-- 
2.20.1



More information about the wine-devel mailing list