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

Required Methods§

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

Object Safety§

This trait is not object safe.

Implementors§