Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
77ea6ef8
Commit
77ea6ef8
authored
Aug 18, 2008
by
Roy Shea
Committed by
Alexandre Julliard
Aug 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mstask: Stub implementation of Activate.
parent
75e043ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
task_scheduler.c
dlls/mstask/task_scheduler.c
+4
-2
task_scheduler.c
dlls/mstask/tests/task_scheduler.c
+1
-1
No files found.
dlls/mstask/task_scheduler.c
View file @
77ea6ef8
...
...
@@ -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
)
{
FIXM
E
(
"%p, %s, %s, %p: stub
\n
"
,
iface
,
debugstr_w
(
pwszName
),
TRAC
E
(
"%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
(
...
...
dlls/mstask/tests/task_scheduler.c
View file @
77ea6ef8
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment