1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#![allow(non_camel_case_types, non_snake_case)]
use crate::macros::*;
use crate::prelude::*;
use crate::taskschd::vts::*;
com_interface! { IBootTrigger: "2a9c35da-d357-41f4-bbc1-207ac1b1f3cb";
/// [`IBootTrigger`](https://learn.microsoft.com/en-us/windows/win32/api/taskschd/nn-taskschd-iboottrigger)
/// COM interface.
///
/// Automatically calls
/// [`Release`](https://learn.microsoft.com/en-us/windows/win32/api/unknwn/nf-unknwn-iunknown-release)
/// when the object goes out of scope.
///
/// # Examples
///
/// ```no_run
/// use winsafe::{self as w, prelude::*};
///
/// let trigger: w::ITrigger; // initialized somewhere
/// # let trigger = unsafe { w::ITrigger::null() };
///
/// let boot_trigger = trigger
/// .QueryInterface::<w::IBootTrigger>()?;
/// # w::HrResult::Ok(())
/// ```
}
impl oleaut_IDispatch for IBootTrigger {}
impl taskschd_ITrigger for IBootTrigger {}
impl taskschd_IBootTrigger for IBootTrigger {}
/// This trait is enabled with the `taskschd` feature, and provides methods for
/// [`IBootTrigger`](crate::IBootTrigger).
///
/// Prefer importing this trait through the prelude:
///
/// ```no_run
/// use winsafe::prelude::*;
/// ```
pub trait taskschd_IBootTrigger: taskschd_ITrigger {
fn_com_bstr_get! { get_Delay: IBootTriggerVT;
/// [`IBootTrigger::get_Delay`](https://learn.microsoft.com/en-us/windows/win32/api/taskschd/nf-taskschd-iboottrigger-get_delay)
/// method.
}
fn_com_bstr_set! { put_Delay: IBootTriggerVT, delay;
/// [`IBootTrigger::put_Delay`](https://learn.microsoft.com/en-us/windows/win32/api/taskschd/nf-taskschd-iboottrigger-put_delay)
/// method.
}
}