mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 07:37:02 +00:00
taskschd: Implement ITaskSettings_put_DeleteExpiredTaskAfter.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
53e4c36ef8
commit
f8483297a5
2 changed files with 12 additions and 4 deletions
|
@ -1196,8 +1196,16 @@ static HRESULT WINAPI TaskSettings_get_DeleteExpiredTaskAfter(ITaskSettings *ifa
|
|||
|
||||
static HRESULT WINAPI TaskSettings_put_DeleteExpiredTaskAfter(ITaskSettings *iface, BSTR delay)
|
||||
{
|
||||
TaskSettings *taskset = impl_from_ITaskSettings(iface);
|
||||
WCHAR *str = NULL;
|
||||
|
||||
TRACE("%p,%s\n", iface, debugstr_w(delay));
|
||||
return E_NOTIMPL;
|
||||
|
||||
if (delay && !(str = heap_strdupW(delay))) return E_OUTOFMEMORY;
|
||||
heap_free(taskset->delete_expired_task_after);
|
||||
taskset->delete_expired_task_after = str;
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI TaskSettings_get_Priority(ITaskSettings *iface, INT *priority)
|
||||
|
|
|
@ -1138,6 +1138,9 @@ static void change_settings(ITaskDefinition *taskdef, struct settings *test)
|
|||
hr = ITaskSettings_put_DeleteExpiredTaskAfter(set, NULL);
|
||||
else
|
||||
hr = ITaskSettings_put_DeleteExpiredTaskAfter(set, test->delete_expired_task_after);
|
||||
ok(hr == S_OK, "expected S_OK, got %#x\n", hr);
|
||||
|
||||
hr = ITaskSettings_put_Priority(set, test->priority);
|
||||
todo_wine
|
||||
ok(hr == S_OK, "expected S_OK, got %#x\n", hr);
|
||||
/* FIXME: Remove once implemented */
|
||||
|
@ -1147,9 +1150,6 @@ todo_wine
|
|||
return;
|
||||
}
|
||||
|
||||
hr = ITaskSettings_put_Priority(set, test->priority);
|
||||
ok(hr == S_OK, "expected S_OK, got %#x\n", hr);
|
||||
|
||||
hr = ITaskSettings_put_Compatibility(set, test->compatibility);
|
||||
ok(hr == S_OK, "expected S_OK, got %#x\n", hr);
|
||||
|
||||
|
|
Loading…
Reference in a new issue