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
8cfdaa45
Commit
8cfdaa45
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::GetFlags().
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
747cd087
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
task.c
dlls/mstask/task.c
+4
-2
No files found.
dlls/mstask/task.c
View file @
8cfdaa45
...
...
@@ -489,8 +489,10 @@ static HRESULT WINAPI MSTASK_ITask_SetFlags(
static
HRESULT
WINAPI
MSTASK_ITask_GetFlags
(
ITask
*
iface
,
DWORD
*
flags
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
iface
,
flags
);
*
flags
=
0
;
TaskImpl
*
This
=
impl_from_ITask
(
iface
);
TRACE
(
"(%p, %p)
\n
"
,
iface
,
flags
);
*
flags
=
LOWORD
(
This
->
flags
);
return
S_OK
;
}
...
...
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