Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a933e2e0
Commit
a933e2e0
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::GetErrorRetryCount() is not implemented.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5907782d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
task.c
dlls/mstask/task.c
+2
-4
task.c
dlls/mstask/tests/task.c
+7
-0
No files found.
dlls/mstask/task.c
View file @
a933e2e0
...
...
@@ -386,11 +386,9 @@ static HRESULT WINAPI MSTASK_ITask_SetErrorRetryCount(
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
MSTASK_ITask_GetErrorRetryCount
(
ITask
*
iface
,
WORD
*
pwRetryCount
)
static
HRESULT
WINAPI
MSTASK_ITask_GetErrorRetryCount
(
ITask
*
iface
,
WORD
*
count
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
iface
,
pwRetryC
ount
);
TRACE
(
"(%p, %p)
\n
"
,
iface
,
c
ount
);
return
E_NOTIMPL
;
}
...
...
dlls/mstask/tests/task.c
View file @
a933e2e0
...
...
@@ -502,6 +502,7 @@ static void test_task_state(void)
BOOL
setup
;
HRESULT
hr
,
status
;
DWORD
flags
;
WORD
val1
;
setup
=
setup_task
();
ok
(
setup
,
"Failed to setup test_task
\n
"
);
...
...
@@ -534,6 +535,12 @@ static void test_task_state(void)
hr
=
ITask_GetStatus
(
test_task
,
&
status
);
ok
(
status
==
SCHED_S_TASK_NOT_SCHEDULED
,
"got %#x
\n
"
,
status
);
if
(
0
)
/* crashes under Windows */
hr
=
ITask_GetErrorRetryCount
(
test_task
,
NULL
);
hr
=
ITask_GetErrorRetryCount
(
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