Module: wine Branch: master Commit: e8ad3c9794411415508681f5b6924dd139b1bcb9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e8ad3c9794411415508681f5b6...
Author: Jacek Caban jacek@codeweavers.com Date: Fri Apr 15 14:31:47 2016 +0200
taskschd.idl: Added IDailyTrigger declaration.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/taskschd.idl | 15 +++++++++++++++ 1 file changed, 15 insertions(+)
diff --git a/include/taskschd.idl b/include/taskschd.idl index 6b86a01..d557755 100644 --- a/include/taskschd.idl +++ b/include/taskschd.idl @@ -393,6 +393,21 @@ interface ITrigger : IDispatch }
[ + odl, + uuid(126c5cd8-b288-41d5-8dbf-e491446adc5c), + oleautomation, + dual, + nonextensible +] +interface IDailyTrigger : ITrigger +{ + [propget] HRESULT DaysInterval([out, retval] short *pDays); + [propput] HRESULT DaysInterval([in] short days); + [propget] HRESULT RandomDelay([out, retval] BSTR *pRandomDelay); + [propput] HRESULT RandomDelay([in] BSTR randomDelay); +} + +[ object, oleautomation, uuid(85df5081-1b24-4f32-878a-d9d14df4cb77)