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
df0fbd5c
Commit
df0fbd5c
authored
May 11, 2018
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
May 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mstask: Implement ITask::Run().
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
87cc8cf3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
task.c
dlls/mstask/task.c
+10
-4
No files found.
dlls/mstask/task.c
View file @
df0fbd5c
...
...
@@ -270,11 +270,17 @@ static HRESULT WINAPI MSTASK_ITask_GetIdleWait(ITask *iface, WORD *idle_minutes,
return
S_OK
;
}
static
HRESULT
WINAPI
MSTASK_ITask_Run
(
ITask
*
iface
)
static
HRESULT
WINAPI
MSTASK_ITask_Run
(
ITask
*
iface
)
{
FIXME
(
"(%p): stub
\n
"
,
iface
);
return
E_NOTIMPL
;
TaskImpl
*
This
=
impl_from_ITask
(
iface
);
TRACE
(
"(%p)
\n
"
,
iface
);
if
(
This
->
status
==
SCHED_S_TASK_NOT_SCHEDULED
)
return
SCHED_E_TASK_NOT_READY
;
This
->
flags
|=
0x04000000
;
return
IPersistFile_Save
(
&
This
->
IPersistFile_iface
,
NULL
,
FALSE
);
}
static
HRESULT
WINAPI
MSTASK_ITask_Terminate
(
...
...
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