pub trait IPlayToManagerInterop_Impl: Sized {
    // Required methods
    fn GetForWindow(
        &self,
        appwindow: HWND,
        riid: *const GUID,
        playtomanager: *mut *mut c_void
    ) -> Result<()>;
    fn ShowPlayToUIForWindow(&self, appwindow: HWND) -> Result<()>;
}

Required Methods§

fn GetForWindow( &self, appwindow: HWND, riid: *const GUID, playtomanager: *mut *mut c_void ) -> Result<()>

fn ShowPlayToUIForWindow(&self, appwindow: HWND) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§