Struct IProgressDialog_Vtbl
#[repr(C)]pub struct IProgressDialog_Vtbl {
    pub base__: IUnknown_Vtbl,
    pub StartProgressDialog: unsafe extern "system" fn(_: *mut c_void, _: HWND, _: *mut c_void, _: u32, _: *const c_void) -> HRESULT,
    pub StopProgressDialog: unsafe extern "system" fn(_: *mut c_void) -> HRESULT,
    pub SetTitle: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT,
    pub SetAnimation: unsafe extern "system" fn(_: *mut c_void, _: HINSTANCE, _: u32) -> HRESULT,
    pub HasUserCancelled: unsafe extern "system" fn(_: *mut c_void) -> BOOL,
    pub SetProgress: unsafe extern "system" fn(_: *mut c_void, _: u32, _: u32) -> HRESULT,
    pub SetProgress64: unsafe extern "system" fn(_: *mut c_void, _: u64, _: u64) -> HRESULT,
    pub SetLine: unsafe extern "system" fn(_: *mut c_void, _: u32, _: PCWSTR, _: BOOL, _: *const c_void) -> HRESULT,
    pub SetCancelMsg: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *const c_void) -> HRESULT,
    pub Timer: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *const c_void) -> HRESULT,
}Fields§
§base__: IUnknown_Vtbl§StartProgressDialog: unsafe extern "system" fn(_: *mut c_void, _: HWND, _: *mut c_void, _: u32, _: *const c_void) -> HRESULT§StopProgressDialog: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§SetTitle: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§SetAnimation: unsafe extern "system" fn(_: *mut c_void, _: HINSTANCE, _: u32) -> HRESULT§HasUserCancelled: unsafe extern "system" fn(_: *mut c_void) -> BOOL§SetProgress: unsafe extern "system" fn(_: *mut c_void, _: u32, _: u32) -> HRESULT§SetProgress64: unsafe extern "system" fn(_: *mut c_void, _: u64, _: u64) -> HRESULT§SetLine: unsafe extern "system" fn(_: *mut c_void, _: u32, _: PCWSTR, _: BOOL, _: *const c_void) -> HRESULT§SetCancelMsg: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *const c_void) -> HRESULT§Timer: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *const c_void) -> HRESULTImplementations§
§impl IProgressDialog_Vtbl
 
impl IProgressDialog_Vtbl
pub const fn new<Identity: IProgressDialog_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for IProgressDialog_Vtbl
impl RefUnwindSafe for IProgressDialog_Vtbl
impl Send for IProgressDialog_Vtbl
impl Sync for IProgressDialog_Vtbl
impl Unpin for IProgressDialog_Vtbl
impl UnwindSafe for IProgressDialog_Vtbl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more