Nikolay Sivov (@nsivov) commented about dlls/propsys/propsys_main.c:
HRESULT WINAPI PSGetPropertyKeyFromName(PCWSTR name, PROPERTYKEY *key) {
- FIXME("%s, %p\n", debugstr_w(name), key);
- return E_NOTIMPL;
- HRESULT hr;
- IPropertySystem *system;
- TRACE("%s, %p\n", debugstr_w(name), debugstr_propkey(key));
- hr = PSGetPropertySystem(&IID_IPropertySystem, (void **)&system);
- if (SUCCEEDED(hr))
- {
IPropertyDescription *desc;
hr = IPropertySystem_GetPropertyDescriptionByName(system, name, &IID_IPropertyDescription, (void *)&desc);
Cast should be void**.