pub trait IEmptyVolumeCache2_Impl: Sized + IEmptyVolumeCache_Impl {
    // Required method
    fn InitializeEx(
        &self,
        hkregkey: HKEY,
        pcwszvolume: &PCWSTR,
        pcwszkeyname: &PCWSTR,
        ppwszdisplayname: *mut PWSTR,
        ppwszdescription: *mut PWSTR,
        ppwszbtntext: *mut PWSTR,
        pdwflags: *mut EMPTY_VOLUME_CACHE_FLAGS
    ) -> Result<()>;
}

Required Methods§

fn InitializeEx( &self, hkregkey: HKEY, pcwszvolume: &PCWSTR, pcwszkeyname: &PCWSTR, ppwszdisplayname: *mut PWSTR, ppwszdescription: *mut PWSTR, ppwszbtntext: *mut PWSTR, pdwflags: *mut EMPTY_VOLUME_CACHE_FLAGS ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§