Trait windows::Win32::System::Search::IColumnMapper_Impl
pub trait IColumnMapper_Impl: Sized {
// Required methods
fn GetPropInfoFromName(
&self,
wcspropname: &PCWSTR,
pppropid: *mut *mut DBID,
pproptype: *mut u16,
puiwidth: *mut u32,
) -> Result<()>;
fn GetPropInfoFromId(
&self,
ppropid: *const DBID,
pwcsname: *mut *mut u16,
pproptype: *mut u16,
puiwidth: *mut u32,
) -> Result<()>;
fn EnumPropInfo(
&self,
ientry: u32,
pwcsname: *const *const u16,
pppropid: *mut *mut DBID,
pproptype: *mut u16,
puiwidth: *mut u32,
) -> Result<()>;
fn IsMapUpToDate(&self) -> Result<()>;
}
Required Methods§
fn GetPropInfoFromName( &self, wcspropname: &PCWSTR, pppropid: *mut *mut DBID, pproptype: *mut u16, puiwidth: *mut u32, ) -> Result<()>
fn GetPropInfoFromId( &self, ppropid: *const DBID, pwcsname: *mut *mut u16, pproptype: *mut u16, puiwidth: *mut u32, ) -> Result<()>
fn EnumPropInfo( &self, ientry: u32, pwcsname: *const *const u16, pppropid: *mut *mut DBID, pproptype: *mut u16, puiwidth: *mut u32, ) -> Result<()>
fn IsMapUpToDate(&self) -> Result<()>
Object Safety§
This trait is not object safe.