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
2032eedf
Commit
2032eedf
authored
Nov 28, 2017
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskschd: Implement ITaskSettings_put_DisallowStartIfOnBatteries.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
eb87ede3
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 @
2032eedf
...
...
@@ -1023,8 +1023,13 @@ static HRESULT WINAPI TaskSettings_get_DisallowStartIfOnBatteries(ITaskSettings
static
HRESULT
WINAPI
TaskSettings_put_DisallowStartIfOnBatteries
(
ITaskSettings
*
iface
,
VARIANT_BOOL
disallow
)
{
FIXME
(
"%p,%d: stub
\n
"
,
iface
,
disallow
);
return
E_NOTIMPL
;
TaskSettings
*
taskset
=
impl_from_ITaskSettings
(
iface
);
TRACE
(
"%p,%d
\n
"
,
iface
,
disallow
);
taskset
->
disallow_start_if_on_batteries
=
disallow
?
TRUE
:
FALSE
;
return
S_OK
;
}
static
HRESULT
WINAPI
TaskSettings_get_AllowHardTerminate
(
ITaskSettings
*
iface
,
VARIANT_BOOL
*
allow
)
...
...
dlls/taskschd/tests/scheduler.c
View file @
2032eedf
...
...
@@ -1114,6 +1114,9 @@ static void change_settings(ITaskDefinition *taskdef, struct settings *test)
ok
(
hr
==
S_OK
,
"expected S_OK, got %#x
\n
"
,
hr
);
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
);
todo_wine
ok
(
hr
==
S_OK
,
"expected S_OK, got %#x
\n
"
,
hr
);
/* FIXME: Remove once implemented */
...
...
@@ -1123,9 +1126,6 @@ todo_wine
return
;
}
hr
=
ITaskSettings_put_AllowHardTerminate
(
set
,
test
->
allow_hard_terminate
);
ok
(
hr
==
S_OK
,
"expected S_OK, got %#x
\n
"
,
hr
);
hr
=
ITaskSettings_put_StartWhenAvailable
(
set
,
test
->
start_when_available
);
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