8 Feb
2025
8 Feb
'25
1:05 p.m.
Nikolay Sivov (@nsivov) commented about dlls/scrrun/filesystem.c:
static HRESULT WINAPI textstream_WriteBlankLines(ITextStream *iface, LONG lines) { - FIXME("%p, %ld stub\n", iface, lines); + struct textstream *This = impl_from_ITextStream(iface); + HRESULT hr = S_OK;
- return E_NOTIMPL; + TRACE("(%p)->(%ld)\n", This, lines);
Please keep existing formatting for the trace message, using 'iface' pointer. And with 'stream' instead of 'This. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7289#note_94067