16 Jun
2025
16 Jun
'25
12:20 p.m.
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.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6892#note_106708