mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
propsys: Stub for PSRegisterPropertySchema.
This commit is contained in:
parent
c17266de9e
commit
1ba1ff5f16
2 changed files with 8 additions and 1 deletions
|
@ -89,7 +89,7 @@
|
|||
@ stub PSLookupPropertyHandlerCLSID
|
||||
@ stub PSPropertyKeyFromString
|
||||
@ stub PSRefreshPropertySchema
|
||||
@ stub PSRegisterPropertySchema
|
||||
@ stdcall PSRegisterPropertySchema(wstr)
|
||||
@ stub PSSetPropertyValue
|
||||
@ stub PSStringFromPropertyKey
|
||||
@ stub PSUnregisterPropertySchema
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue