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
67abe79d
Commit
67abe79d
authored
Sep 06, 2016
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 07, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskschd: Added ITaskDefinition::get_Triggers implementation.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f65b5e35
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
172 additions
and
2 deletions
+172
-2
task.c
dlls/taskschd/task.c
+161
-2
scheduler.c
dlls/taskschd/tests/scheduler.c
+11
-0
No files found.
dlls/taskschd/task.c
View file @
67abe79d
...
...
@@ -37,6 +37,149 @@ WINE_DEFAULT_DEBUG_CHANNEL(taskschd);
typedef
struct
{
ITriggerCollection
ITriggerCollection_iface
;
LONG
ref
;
}
trigger_collection
;
static
inline
trigger_collection
*
impl_from_ITriggerCollection
(
ITriggerCollection
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
trigger_collection
,
ITriggerCollection_iface
);
}
static
HRESULT
WINAPI
TriggerCollection_QueryInterface
(
ITriggerCollection
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppv
);
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
)
||
IsEqualGUID
(
&
IID_IDispatch
,
riid
)
||
IsEqualGUID
(
&
IID_ITriggerCollection
,
riid
))
{
*
ppv
=
&
This
->
ITriggerCollection_iface
;
}
else
{
FIXME
(
"unimplemented interface %s
\n
"
,
debugstr_guid
(
riid
));
*
ppv
=
NULL
;
return
E_NOINTERFACE
;
}
IUnknown_AddRef
((
IUnknown
*
)
*
ppv
);
return
S_OK
;
}
static
ULONG
WINAPI
TriggerCollection_AddRef
(
ITriggerCollection
*
iface
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
LONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
return
ref
;
}
static
ULONG
WINAPI
TriggerCollection_Release
(
ITriggerCollection
*
iface
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
LONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
if
(
!
ref
)
heap_free
(
This
);
return
ref
;
}
static
HRESULT
WINAPI
TriggerCollection_GetTypeInfoCount
(
ITriggerCollection
*
iface
,
UINT
*
count
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
count
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
TriggerCollection_GetTypeInfo
(
ITriggerCollection
*
iface
,
UINT
index
,
LCID
lcid
,
ITypeInfo
**
info
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
FIXME
(
"(%p)->(%u %u %p)
\n
"
,
This
,
index
,
lcid
,
info
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
TriggerCollection_GetIDsOfNames
(
ITriggerCollection
*
iface
,
REFIID
riid
,
LPOLESTR
*
names
,
UINT
count
,
LCID
lcid
,
DISPID
*
dispid
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
FIXME
(
"(%p)->(%s %p %u %u %p)
\n
"
,
This
,
debugstr_guid
(
riid
),
names
,
count
,
lcid
,
dispid
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
TriggerCollection_Invoke
(
ITriggerCollection
*
iface
,
DISPID
dispid
,
REFIID
riid
,
LCID
lcid
,
WORD
flags
,
DISPPARAMS
*
params
,
VARIANT
*
result
,
EXCEPINFO
*
excepinfo
,
UINT
*
argerr
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
FIXME
(
"(%p)->(%d %s %x %x %p %p %p %p)
\n
"
,
This
,
dispid
,
debugstr_guid
(
riid
),
lcid
,
flags
,
params
,
result
,
excepinfo
,
argerr
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
TriggerCollection_get_Count
(
ITriggerCollection
*
iface
,
LONG
*
count
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
count
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
TriggerCollection_get_Item
(
ITriggerCollection
*
iface
,
LONG
index
,
ITrigger
**
trigger
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
FIXME
(
"(%p)->(%d %p)
\n
"
,
This
,
index
,
trigger
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
TriggerCollection_get__NewEnum
(
ITriggerCollection
*
iface
,
IUnknown
**
penum
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
penum
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
TriggerCollection_Create
(
ITriggerCollection
*
iface
,
TASK_TRIGGER_TYPE2
type
,
ITrigger
**
trigger
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
FIXME
(
"(%p)->(%d %p)
\n
"
,
This
,
type
,
trigger
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
TriggerCollection_Remove
(
ITriggerCollection
*
iface
,
VARIANT
index
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
index
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
TriggerCollection_Clear
(
ITriggerCollection
*
iface
)
{
trigger_collection
*
This
=
impl_from_ITriggerCollection
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
const
ITriggerCollectionVtbl
TriggerCollection_vtbl
=
{
TriggerCollection_QueryInterface
,
TriggerCollection_AddRef
,
TriggerCollection_Release
,
TriggerCollection_GetTypeInfoCount
,
TriggerCollection_GetTypeInfo
,
TriggerCollection_GetIDsOfNames
,
TriggerCollection_Invoke
,
TriggerCollection_get_Count
,
TriggerCollection_get_Item
,
TriggerCollection_get__NewEnum
,
TriggerCollection_Create
,
TriggerCollection_Remove
,
TriggerCollection_Clear
};
typedef
struct
{
IRegistrationInfo
IRegistrationInfo_iface
;
LONG
ref
;
WCHAR
*
description
,
*
author
,
*
version
,
*
date
,
*
documentation
,
*
uri
,
*
source
;
...
...
@@ -1072,8 +1215,24 @@ static HRESULT WINAPI TaskDefinition_put_RegistrationInfo(ITaskDefinition *iface
static
HRESULT
WINAPI
TaskDefinition_get_Triggers
(
ITaskDefinition
*
iface
,
ITriggerCollection
**
triggers
)
{
FIXME
(
"%p,%p: stub
\n
"
,
iface
,
triggers
);
return
E_NOTIMPL
;
TaskDefinition
*
This
=
impl_from_ITaskDefinition
(
iface
);
TRACE
(
"%p,%p
\n
"
,
This
,
triggers
);
if
(
!
This
->
triggers
)
{
trigger_collection
*
collection
;
collection
=
heap_alloc
(
sizeof
(
*
collection
));
if
(
!
collection
)
return
E_OUTOFMEMORY
;
collection
->
ITriggerCollection_iface
.
lpVtbl
=
&
TriggerCollection_vtbl
;
collection
->
ref
=
1
;
This
->
triggers
=
&
collection
->
ITriggerCollection_iface
;
}
ITriggerCollection_AddRef
(
*
triggers
=
This
->
triggers
);
return
S_OK
;
}
static
HRESULT
WINAPI
TaskDefinition_put_Triggers
(
ITaskDefinition
*
iface
,
ITriggerCollection
*
triggers
)
...
...
dlls/taskschd/tests/scheduler.c
View file @
67abe79d
...
...
@@ -1291,6 +1291,7 @@ static void test_TaskDefinition(void)
100
,
1
,
TASK_INSTANCES_STOP_EXISTING
,
TASK_COMPATIBILITY_V1
,
VARIANT_FALSE
,
VARIANT_FALSE
,
VARIANT_FALSE
,
VARIANT_FALSE
,
VARIANT_TRUE
,
VARIANT_TRUE
,
VARIANT_FALSE
,
VARIANT_TRUE
,
VARIANT_TRUE
,
VARIANT_TRUE
};
ITriggerCollection
*
trigger_col
,
*
trigger_col2
;
HRESULT
hr
;
ITaskService
*
service
;
ITaskDefinition
*
taskdef
;
...
...
@@ -1418,6 +1419,16 @@ if (hr == S_OK)
if
(
hr
==
S_OK
)
ok
(
!
bstr
,
"expected NULL, got %s
\n
"
,
wine_dbgstr_w
(
bstr
));
hr
=
ITaskDefinition_get_Triggers
(
taskdef
,
&
trigger_col
);
ok
(
hr
==
S_OK
,
"get_Triggers failed: %08x
\n
"
,
hr
);
ok
(
trigger_col
!=
NULL
,
"Trigers = NULL
\n
"
);
ITriggerCollection_Release
(
trigger_col
);
hr
=
ITaskDefinition_get_Triggers
(
taskdef
,
&
trigger_col2
);
ok
(
hr
==
S_OK
,
"get_Triggers failed: %08x
\n
"
,
hr
);
ok
(
trigger_col
==
trigger_col2
,
"Trigers = NULL
\n
"
);
ITriggerCollection_Release
(
trigger_col2
);
IRegistrationInfo_Release
(
reginfo
);
ITaskDefinition_Release
(
taskdef
);
ITaskService_Release
(
service
);
...
...
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