pub trait ICopyHookW_Impl: Sized {
    // Required method
    fn CopyCallback(
        &self,
        hwnd: HWND,
        wfunc: u32,
        wflags: u32,
        pszsrcfile: &PCWSTR,
        dwsrcattribs: u32,
        pszdestfile: &PCWSTR,
        dwdestattribs: u32
    ) -> u32;
}

Required Methods§

fn CopyCallback( &self, hwnd: HWND, wfunc: u32, wflags: u32, pszsrcfile: &PCWSTR, dwsrcattribs: u32, pszdestfile: &PCWSTR, dwdestattribs: u32 ) -> u32

Object Safety§

This trait is not object safe.

Implementors§