Aric Stewart : propsys: Stub for PSUnregisterPropertySchema.

Alexandre Julliard julliard at winehq.org
Mon Mar 23 12:34:50 CDT 2009


Module: wine
Branch: master
Commit: 6979c4142f75303e7a31e049d5324e419db4cf1d
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=6979c4142f75303e7a31e049d5324e419db4cf1d

Author: Aric Stewart <aric at codeweavers.com>
Date:   Thu Mar 19 09:46:45 2009 -0500

propsys: Stub for PSUnregisterPropertySchema.

Needed for IE8 install.

---

 dlls/propsys/propsys.spec   |    2 +-
 dlls/propsys/propsys_main.c |    7 +++++++
 2 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/dlls/propsys/propsys.spec b/dlls/propsys/propsys.spec
index 5fa0d96..1848b47 100644
--- a/dlls/propsys/propsys.spec
+++ b/dlls/propsys/propsys.spec
@@ -92,7 +92,7 @@
 @ stdcall PSRegisterPropertySchema(wstr)
 @ stub PSSetPropertyValue
 @ stub PSStringFromPropertyKey
-@ stub PSUnregisterPropertySchema
+@ stdcall PSUnregisterPropertySchema(wstr)
 @ stdcall PropVariantChangeType(ptr ptr long long)
 @ stub PropVariantCompareEx
 @ stub PropVariantGetBooleanElem
diff --git a/dlls/propsys/propsys_main.c b/dlls/propsys/propsys_main.c
index ccdf3ed..c5bcab7 100644
--- a/dlls/propsys/propsys_main.c
+++ b/dlls/propsys/propsys_main.c
@@ -54,3 +54,10 @@ HRESULT WINAPI PSRegisterPropertySchema(PCWSTR path)
 
     return E_NOTIMPL;
 }
+
+HRESULT WINAPI PSUnregisterPropertySchema(PCWSTR pszPath)
+{
+    FIXME("stub\n");
+
+    return E_NOTIMPL;
+}




More information about the wine-cvs mailing list