Trait windows::Win32::Media::MediaPlayer::IWMPSyncDevice_Impl
pub trait IWMPSyncDevice_Impl: Sized {
Show 16 methods
// Required methods
fn friendlyName(&self, pbstrname: *mut BSTR) -> Result<()>;
fn SetfriendlyName(&self, bstrname: &BSTR) -> Result<()>;
fn deviceName(&self, pbstrname: *mut BSTR) -> Result<()>;
fn deviceId(&self, pbstrdeviceid: *mut BSTR) -> Result<()>;
fn partnershipIndex(&self, plindex: *mut i32) -> Result<()>;
fn connected(&self, pvbconnected: *mut VARIANT_BOOL) -> Result<()>;
fn status(&self, pwmpds: *mut WMPDeviceStatus) -> Result<()>;
fn syncState(&self, pwmpss: *mut WMPSyncState) -> Result<()>;
fn progress(&self, plprogress: *mut i32) -> Result<()>;
fn getItemInfo(
&self,
bstritemname: &BSTR,
pbstrval: *mut BSTR,
) -> Result<()>;
fn createPartnership(&self, vbshowui: VARIANT_BOOL) -> Result<()>;
fn deletePartnership(&self) -> Result<()>;
fn start(&self) -> Result<()>;
fn stop(&self) -> Result<()>;
fn showSettings(&self) -> Result<()>;
fn isIdentical(
&self,
pdevice: Option<&IWMPSyncDevice>,
pvbool: *mut VARIANT_BOOL,
) -> Result<()>;
}
Required Methods§
fn friendlyName(&self, pbstrname: *mut BSTR) -> Result<()>
fn SetfriendlyName(&self, bstrname: &BSTR) -> Result<()>
fn deviceName(&self, pbstrname: *mut BSTR) -> Result<()>
fn deviceId(&self, pbstrdeviceid: *mut BSTR) -> Result<()>
fn partnershipIndex(&self, plindex: *mut i32) -> Result<()>
fn connected(&self, pvbconnected: *mut VARIANT_BOOL) -> Result<()>
fn status(&self, pwmpds: *mut WMPDeviceStatus) -> Result<()>
fn syncState(&self, pwmpss: *mut WMPSyncState) -> Result<()>
fn progress(&self, plprogress: *mut i32) -> Result<()>
fn getItemInfo(&self, bstritemname: &BSTR, pbstrval: *mut BSTR) -> Result<()>
fn createPartnership(&self, vbshowui: VARIANT_BOOL) -> Result<()>
fn deletePartnership(&self) -> Result<()>
fn start(&self) -> Result<()>
fn stop(&self) -> Result<()>
fn showSettings(&self) -> Result<()>
fn isIdentical( &self, pdevice: Option<&IWMPSyncDevice>, pvbool: *mut VARIANT_BOOL, ) -> Result<()>
Object Safety§
This trait is not object safe.