pub trait IStorageProviderCopyHook_Impl: Sized {
    // Required method
    fn CopyCallback(
        &self,
        hwnd: HWND,
        operation: u32,
        flags: u32,
        srcfile: &PCWSTR,
        srcattribs: u32,
        destfile: &PCWSTR,
        destattribs: u32
    ) -> Result<u32>;
}

Required Methods§

fn CopyCallback( &self, hwnd: HWND, operation: u32, flags: u32, srcfile: &PCWSTR, srcattribs: u32, destfile: &PCWSTR, destattribs: u32 ) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§