Module: wine Branch: master Commit: 1ba1ff5f169517885516af9e5bbdf10d4bb82e45 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1ba1ff5f169517885516af9e5b...
Author: Nikolay Sivov bunglehead@gmail.com Date: Tue Feb 3 17:36:44 2009 +0300
propsys: 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; +}