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
9d113d35
Commit
9d113d35
authored
Apr 20, 2018
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Apr 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mstask: ITask::GetErrorRetryInterval() is not implemented.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a933e2e0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
task.c
dlls/mstask/task.c
+2
-4
task.c
dlls/mstask/tests/task.c
+6
-0
No files found.
dlls/mstask/task.c
View file @
9d113d35
...
...
@@ -400,11 +400,9 @@ static HRESULT WINAPI MSTASK_ITask_SetErrorRetryInterval(
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MSTASK_ITask_GetErrorRetryInterval
(
ITask
*
iface
,
WORD
*
pwRetryInterval
)
static
HRESULT
WINAPI
MSTASK_ITask_GetErrorRetryInterval
(
ITask
*
iface
,
WORD
*
interval
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
iface
,
pwRetryI
nterval
);
TRACE
(
"(%p, %p)
\n
"
,
iface
,
i
nterval
);
return
E_NOTIMPL
;
}
...
...
dlls/mstask/tests/task.c
View file @
9d113d35
...
...
@@ -541,6 +541,12 @@ static void test_task_state(void)
hr
=
ITask_GetErrorRetryCount
(
test_task
,
&
val1
);
ok
(
hr
==
E_NOTIMPL
,
"got %#x
\n
"
,
hr
);
if
(
0
)
/* crashes under Windows */
hr
=
ITask_GetErrorRetryInterval
(
test_task
,
NULL
);
hr
=
ITask_GetErrorRetryInterval
(
test_task
,
&
val1
);
ok
(
hr
==
E_NOTIMPL
,
"got %#x
\n
"
,
hr
);
cleanup_task
();
}
...
...
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