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
fdb2eedd
Commit
fdb2eedd
authored
Nov 27, 2017
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 27, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskschd: Implement ITaskSettings_put_StopIfGoingOnBatteries.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0ae50c22
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
task.c
dlls/taskschd/task.c
+7
-2
scheduler.c
dlls/taskschd/tests/scheduler.c
+3
-3
No files found.
dlls/taskschd/task.c
View file @
fdb2eedd
...
...
@@ -999,8 +999,13 @@ static HRESULT WINAPI TaskSettings_get_StopIfGoingOnBatteries(ITaskSettings *ifa
static
HRESULT
WINAPI
TaskSettings_put_StopIfGoingOnBatteries
(
ITaskSettings
*
iface
,
VARIANT_BOOL
stop
)
{
FIXME
(
"%p,%d: stub
\n
"
,
iface
,
stop
);
return
E_NOTIMPL
;
TaskSettings
*
taskset
=
impl_from_ITaskSettings
(
iface
);
TRACE
(
"%p,%d
\n
"
,
iface
,
stop
);
taskset
->
stop_if_going_on_batteries
=
stop
?
TRUE
:
FALSE
;
return
S_OK
;
}
static
HRESULT
WINAPI
TaskSettings_get_DisallowStartIfOnBatteries
(
ITaskSettings
*
iface
,
VARIANT_BOOL
*
disallow
)
...
...
dlls/taskschd/tests/scheduler.c
View file @
fdb2eedd
...
...
@@ -1111,6 +1111,9 @@ static void change_settings(ITaskDefinition *taskdef, struct settings *test)
ok
(
hr
==
S_OK
,
"expected S_OK, got %#x
\n
"
,
hr
);
hr
=
ITaskSettings_put_StopIfGoingOnBatteries
(
set
,
test
->
stop_if_going_on_batteries
);
ok
(
hr
==
S_OK
,
"expected S_OK, got %#x
\n
"
,
hr
);
hr
=
ITaskSettings_put_DisallowStartIfOnBatteries
(
set
,
test
->
disallow_start_if_on_batteries
);
todo_wine
ok
(
hr
==
S_OK
,
"expected S_OK, got %#x
\n
"
,
hr
);
/* FIXME: Remove once implemented */
...
...
@@ -1120,9 +1123,6 @@ todo_wine
return
;
}
hr
=
ITaskSettings_put_DisallowStartIfOnBatteries
(
set
,
test
->
disallow_start_if_on_batteries
);
ok
(
hr
==
S_OK
,
"expected S_OK, got %#x
\n
"
,
hr
);
hr
=
ITaskSettings_put_AllowHardTerminate
(
set
,
test
->
allow_hard_terminate
);
ok
(
hr
==
S_OK
,
"expected S_OK, got %#x
\n
"
,
hr
);
...
...
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