pub trait IUserNotification2_Impl: Sized {
    // Required methods
    fn SetBalloonInfo(
        &self,
        psztitle: &PCWSTR,
        psztext: &PCWSTR,
        dwinfoflags: u32
    ) -> Result<()>;
    fn SetBalloonRetry(
        &self,
        dwshowtime: u32,
        dwinterval: u32,
        cretrycount: u32
    ) -> Result<()>;
    fn SetIconInfo(&self, hicon: HICON, psztooltip: &PCWSTR) -> Result<()>;
    fn Show(
        &self,
        pqc: Option<&IQueryContinue>,
        dwcontinuepollinterval: u32,
        psink: Option<&IUserNotificationCallback>
    ) -> Result<()>;
    fn PlaySound(&self, pszsoundname: &PCWSTR) -> Result<()>;
}

Required Methods§

fn SetBalloonInfo( &self, psztitle: &PCWSTR, psztext: &PCWSTR, dwinfoflags: u32 ) -> Result<()>

fn SetBalloonRetry( &self, dwshowtime: u32, dwinterval: u32, cretrycount: u32 ) -> Result<()>

fn SetIconInfo(&self, hicon: HICON, psztooltip: &PCWSTR) -> Result<()>

fn Show( &self, pqc: Option<&IQueryContinue>, dwcontinuepollinterval: u32, psink: Option<&IUserNotificationCallback> ) -> Result<()>

fn PlaySound(&self, pszsoundname: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§