taskschd: Set count to zero in regtasks_get_Count stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52349
Signed-off-by: Olivier F. R. Dierick <o.dierick@piezo-forte.be>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Olivier F. R. Dierick 2022-01-07 00:58:03 +01:00 committed by Alexandre Julliard
parent c51bf452ba
commit bbd9b9bfee
1 changed files with 1 additions and 0 deletions

View File

@ -465,6 +465,7 @@ static HRESULT WINAPI regtasks_Invoke(IRegisteredTaskCollection *iface, DISPID d
static HRESULT WINAPI regtasks_get_Count(IRegisteredTaskCollection *iface, LONG *count)
{
FIXME("%p,%p: stub\n", iface, count);
if (count) *count = 0;
return E_NOTIMPL;
}