Trait windows::Win32::UI::Shell::IBandSite_Impl
pub trait IBandSite_Impl: Sized {
// Required methods
fn AddBand(&self, punk: Option<&IUnknown>) -> Result<()>;
fn EnumBands(&self, uband: u32) -> Result<u32>;
fn QueryBand(
&self,
dwbandid: u32,
ppstb: *mut Option<IDeskBand>,
pdwstate: *mut u32,
pszname: PWSTR,
cchname: i32,
) -> Result<()>;
fn SetBandState(
&self,
dwbandid: u32,
dwmask: u32,
dwstate: u32,
) -> Result<()>;
fn RemoveBand(&self, dwbandid: u32) -> Result<()>;
fn GetBandObject(
&self,
dwbandid: u32,
riid: *const GUID,
ppv: *mut *mut c_void,
) -> Result<()>;
fn SetBandSiteInfo(&self, pbsinfo: *const BANDSITEINFO) -> Result<()>;
fn GetBandSiteInfo(&self, pbsinfo: *mut BANDSITEINFO) -> Result<()>;
}
Required Methods§
fn AddBand(&self, punk: Option<&IUnknown>) -> Result<()>
fn EnumBands(&self, uband: u32) -> Result<u32>
fn QueryBand( &self, dwbandid: u32, ppstb: *mut Option<IDeskBand>, pdwstate: *mut u32, pszname: PWSTR, cchname: i32, ) -> Result<()>
fn SetBandState(&self, dwbandid: u32, dwmask: u32, dwstate: u32) -> Result<()>
fn RemoveBand(&self, dwbandid: u32) -> Result<()>
fn GetBandObject( &self, dwbandid: u32, riid: *const GUID, ppv: *mut *mut c_void, ) -> Result<()>
fn SetBandSiteInfo(&self, pbsinfo: *const BANDSITEINFO) -> Result<()>
fn GetBandSiteInfo(&self, pbsinfo: *mut BANDSITEINFO) -> Result<()>
Object Safety§
This trait is not object safe.