[][src]Struct winapi::um::sapiddk51::ISpThreadControl

#[repr(C)]pub struct ISpThreadControl {
    pub lpVtbl: *const ISpThreadControlVtbl,
}

Fields

lpVtbl: *const ISpThreadControlVtbl

Implementations

impl ISpThreadControl[src]

pub unsafe fn StartThread(&self, dwFlags: DWORD, phwnd: *mut HWND) -> HRESULT[src]

pub unsafe fn WaitForThreadDone(
    &self,
    fForceStop: BOOL,
    phrThreadResult: *mut HRESULT,
    msTimeOut: ULONG
) -> HRESULT
[src]

pub unsafe fn TerminateThread(&self) -> HRESULT[src]

pub unsafe fn ThreadHandle(&self) -> HANDLE[src]

pub unsafe fn ThreadId(&self) -> DWORD[src]

pub unsafe fn NotifyEvent(&self) -> HANDLE[src]

pub unsafe fn WindowHandle(&self) -> HWND[src]

pub unsafe fn ThreadCompleteEvent(&self) -> HANDLE[src]

pub unsafe fn ExitThreadEvent(&self) -> HANDLE[src]

Methods from Deref<Target = ISpNotifySink>

pub unsafe fn Notify(&self) -> HRESULT[src]

Trait Implementations

impl Deref for ISpThreadControl[src]

type Target = ISpNotifySink

The resulting type after dereferencing.

impl Interface for ISpThreadControl[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.