sapi: Only print GetStatus() FIXME once.
The Speedtest app calls this function excessively.
This commit is contained in:
parent
617b29c402
commit
f2f453c454
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue