Commit f2f453c4 authored by Aida Jonikienė's avatar Aida Jonikienė Committed by Alexandre Julliard

sapi: Only print GetStatus() FIXME once.

The Speedtest app calls this function excessively.
parent 617b29c4
......@@ -1068,7 +1068,12 @@ static HRESULT WINAPI spvoice_SpeakStream(ISpVoice *iface, IStream *stream, DWOR
static HRESULT WINAPI spvoice_GetStatus(ISpVoice *iface, SPVOICESTATUS *status, WCHAR **bookmark)
{
FIXME("(%p, %p, %p): stub.\n", iface, status, bookmark);
static unsigned int once;
if (!once++)
FIXME("(%p, %p, %p): stub.\n", iface, status, bookmark);
else
WARN("(%p, %p, %p): stub.\n", iface, status, bookmark);
return E_NOTIMPL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment