From 77ea6ef814a2dff8c9ccc43b7de1af1140e2081c Mon Sep 17 00:00:00 2001 From: Roy Shea Date: Mon, 18 Aug 2008 17:23:42 -0700 Subject: [PATCH] mstask: Stub implementation of Activate. --- dlls/mstask/task_scheduler.c | 6 ++++-- dlls/mstask/tests/task_scheduler.c | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/dlls/mstask/task_scheduler.c b/dlls/mstask/task_scheduler.c index bd4cc1d9ff..5efa0869b2 100644 --- a/dlls/mstask/task_scheduler.c +++ b/dlls/mstask/task_scheduler.c @@ -16,6 +16,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ +#include "corerror.h" #include "mstask_private.h" #include "wine/debug.h" @@ -99,9 +100,10 @@ static HRESULT WINAPI MSTASK_ITaskScheduler_Activate( REFIID riid, IUnknown **ppunk) { - FIXME("%p, %s, %s, %p: stub\n", iface, debugstr_w(pwszName), + TRACE("%p, %s, %s, %p: stub\n", iface, debugstr_w(pwszName), debugstr_guid(riid), ppunk); - return E_NOTIMPL; + FIXME("Partial stub always returning COR_E_FILENOTFOUND\n"); + return COR_E_FILENOTFOUND; } static HRESULT WINAPI MSTASK_ITaskScheduler_Delete( diff --git a/dlls/mstask/tests/task_scheduler.c b/dlls/mstask/tests/task_scheduler.c index d115dd232b..af3a565cf6 100644 --- a/dlls/mstask/tests/task_scheduler.c +++ b/dlls/mstask/tests/task_scheduler.c @@ -96,7 +96,7 @@ static void test_Activate(void) /* Attempt to Activate a non-existant task */ hres = ITaskScheduler_Activate(test_task_scheduler, not_task_name, &IID_ITask, (IUnknown**)&task); - todo_wine ok(hres == COR_E_FILENOTFOUND, "Expected COR_E_FILENOTFOUND: %08x\n", hres); + ok(hres == COR_E_FILENOTFOUND, "Expected COR_E_FILENOTFOUND: %08x\n", hres); ITaskScheduler_Release(test_task_scheduler); return; -- 2.32.0.93.g670b81a890