Nikolay Sivov (@nsivov) commented about dlls/propsys/propsys_main.c:
{
- FIXME("%s stub\n", debugstr_w(path));
- HRESULT hr;
- IPropertySystem *system;
- return S_OK;
- TRACE("%s\n", debugstr_w(path));
- hr = PSGetPropertySystem(&IID_IPropertySystem, (void **)&system);
- if (SUCCEEDED(hr))
- {
hr = IPropertySystem_RegisterPropertySchema(system, path);
IPropertySystem_Release(system);
- }
- return hr;
}
You don't have to implement functions that you're not planning to use.