Trait windows::Win32::UI::Input::Ime::IImePadApplet_Impl

pub trait IImePadApplet_Impl: Sized {
    // Required methods
    fn Initialize(&self, lpiimepad: Option<&IUnknown>) -> Result<()>;
    fn Terminate(&self) -> Result<()>;
    fn GetAppletConfig(&self, lpappletcfg: *mut IMEAPPLETCFG) -> Result<()>;
    fn CreateUI(
        &self,
        hwndparent: HWND,
        lpimeappletui: *mut IMEAPPLETUI,
    ) -> Result<()>;
    fn Notify(
        &self,
        lpimepad: Option<&IUnknown>,
        notify: i32,
        wparam: WPARAM,
        lparam: LPARAM,
    ) -> Result<()>;
}

Required Methods§

fn Initialize(&self, lpiimepad: Option<&IUnknown>) -> Result<()>

fn Terminate(&self) -> Result<()>

fn GetAppletConfig(&self, lpappletcfg: *mut IMEAPPLETCFG) -> Result<()>

fn CreateUI( &self, hwndparent: HWND, lpimeappletui: *mut IMEAPPLETUI, ) -> Result<()>

fn Notify( &self, lpimepad: Option<&IUnknown>, notify: i32, wparam: WPARAM, lparam: LPARAM, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§