#[repr(C)]
pub struct IRunningTaskVtbl {
pub parent: IDispatchVtbl,
pub get_Name: unsafe extern "system" fn(This: *mut IRunningTask, pName: *mut BSTR) -> HRESULT,
pub get_InstanceGuid: unsafe extern "system" fn(This: *mut IRunningTask, pGuid: *mut BSTR) -> HRESULT,
pub get_Path: unsafe extern "system" fn(This: *mut IRunningTask, pPath: *mut BSTR) -> HRESULT,
pub get_State: unsafe extern "system" fn(This: *mut IRunningTask, pState: *mut TASK_STATE) -> HRESULT,
pub get_CurrentAction: unsafe extern "system" fn(This: *mut IRunningTask, pName: *mut BSTR) -> HRESULT,
pub Stop: unsafe extern "system" fn(This: *mut IRunningTask) -> HRESULT,
pub Refresh: unsafe extern "system" fn(This: *mut IRunningTask) -> HRESULT,
pub get_EnginePID: unsafe extern "system" fn(This: *mut IRunningTask, pPID: *mut DWORD) -> HRESULT,
}
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.