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
6b56dce1
Commit
6b56dce1
authored
Jun 11, 2018
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jun 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mstask: Implement IEnumWorkItems::Skip().
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c8408220
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
task_scheduler.c
dlls/mstask/task_scheduler.c
+11
-3
No files found.
dlls/mstask/task_scheduler.c
View file @
6b56dce1
...
...
@@ -209,9 +209,17 @@ static HRESULT WINAPI EnumWorkItems_Next(IEnumWorkItems *iface, ULONG count, LPW
static
HRESULT
WINAPI
EnumWorkItems_Skip
(
IEnumWorkItems
*
iface
,
ULONG
count
)
{
EnumWorkItemsImpl
*
This
=
impl_from_IEnumWorkItems
(
iface
);
FIXME
(
"(%p)->(%u): stub
\n
"
,
This
,
count
);
return
E_NOTIMPL
;
LPWSTR
*
names
;
ULONG
fetched
;
HRESULT
hr
;
TRACE
(
"(%p)->(%u)
\n
"
,
iface
,
count
);
hr
=
EnumWorkItems_Next
(
iface
,
count
,
&
names
,
&
fetched
);
if
(
SUCCEEDED
(
hr
))
free_list
(
names
,
fetched
);
return
hr
;
}
static
HRESULT
WINAPI
EnumWorkItems_Reset
(
IEnumWorkItems
*
iface
)
...
...
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