pub trait ISideShowSession_Impl: Sized {
    // Required methods
    fn RegisterContent(
        &self,
        in_applicationid: *const GUID,
        in_endpointid: *const GUID
    ) -> Result<ISideShowContentManager>;
    fn RegisterNotifications(
        &self,
        in_applicationid: *const GUID
    ) -> Result<ISideShowNotificationManager>;
}

Required Methods§

fn RegisterContent( &self, in_applicationid: *const GUID, in_endpointid: *const GUID ) -> Result<ISideShowContentManager>

fn RegisterNotifications( &self, in_applicationid: *const GUID ) -> Result<ISideShowNotificationManager>

Object Safety§

This trait is not object safe.

Implementors§