pub trait IAudioProcessingObjectNotifications_Impl: Sized {
    // Required methods
    fn GetApoNotificationRegistrationInfo(
        &self,
        aponotifications: *mut *mut APO_NOTIFICATION_DESCRIPTOR,
        count: *mut u32
    ) -> Result<()>;
    fn HandleNotification(&self, aponotification: *const APO_NOTIFICATION);
}

Required Methods§

fn GetApoNotificationRegistrationInfo( &self, aponotifications: *mut *mut APO_NOTIFICATION_DESCRIPTOR, count: *mut u32 ) -> Result<()>

fn HandleNotification(&self, aponotification: *const APO_NOTIFICATION)

Object Safety§

This trait is not object safe.

Implementors§