propsys: Stub for PSRegisterPropertySchema (try2)

Nikolay Sivov bunglehead at gmail.com
Tue Feb 3 08:39:04 CST 2009


Changelog:
    - try2: stub placed in _main.c instead of new file creation
    - Stub for PSRegisterPropertySchema. Required for IE8 RC1 installer.

>From 5abed5eff0daafb40e6e7fc69bf0589bb2138a43 Mon Sep 17 00:00:00 2001
From: Nikolay Sivov <bunglehead at gmail.com>
Date: Tue, 3 Feb 2009 17:36:44 +0300
Subject: Stub for PSRegisterPropertySchema

---
 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 a2ae522..5fa0d96 100644
--- a/dlls/propsys/propsys.spec
+++ b/dlls/propsys/propsys.spec
@@ -89,7 +89,7 @@
 @ stub PSLookupPropertyHandlerCLSID
 @ stub PSPropertyKeyFromString
 @ stub PSRefreshPropertySchema
-@ stub PSRegisterPropertySchema
+@ stdcall PSRegisterPropertySchema(wstr)
 @ stub PSSetPropertyValue
 @ stub PSStringFromPropertyKey
 @ stub PSUnregisterPropertySchema
diff --git a/dlls/propsys/propsys_main.c b/dlls/propsys/propsys_main.c
index 1010d33..ccdf3ed 100644
--- a/dlls/propsys/propsys_main.c
+++ b/dlls/propsys/propsys_main.c
@@ -47,3 +47,10 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 
     return TRUE;
 }
+
+HRESULT WINAPI PSRegisterPropertySchema(PCWSTR path)
+{
+    FIXME("stub\n");
+
+    return E_NOTIMPL;
+}
-- 
1.5.6.5






More information about the wine-patches mailing list