Struct windows::Win32::UI::Input::Ime::IActiveIME_Vtbl

#[repr(C)]
pub struct IActiveIME_Vtbl {
Show 18 fields pub base__: IUnknown_Vtbl, pub Inquire: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut IMEINFO, _: PWSTR, _: *mut u32) -> HRESULT, pub ConversionList: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: PCWSTR, _: u32, _: u32, _: *mut CANDIDATELIST, _: *mut u32) -> HRESULT, pub Configure: unsafe extern "system" fn(_: *mut c_void, _: HKL, _: HWND, _: u32, _: *const REGISTERWORDW) -> HRESULT, pub Destroy: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub Escape: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: u32, _: *mut c_void, _: *mut LRESULT) -> HRESULT, pub SetActiveContext: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: BOOL) -> HRESULT, pub ProcessKey: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: u32, _: u32, _: *const u8) -> HRESULT, pub Notify: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: u32, _: u32, _: u32) -> HRESULT, pub Select: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: BOOL) -> HRESULT, pub SetCompositionString: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: u32, _: *const c_void, _: u32, _: *const c_void, _: u32) -> HRESULT, pub ToAsciiEx: unsafe extern "system" fn(_: *mut c_void, _: u32, _: u32, _: *const u8, _: u32, _: HIMC, _: *mut u32, _: *mut u32) -> HRESULT, pub RegisterWord: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: u32, _: PCWSTR) -> HRESULT, pub UnregisterWord: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: u32, _: PCWSTR) -> HRESULT, pub GetRegisterWordStyle: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut STYLEBUFW, _: *mut u32) -> HRESULT, pub EnumRegisterWord: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: u32, _: PCWSTR, _: *const c_void, _: *mut *mut c_void) -> HRESULT, pub GetCodePageA: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub GetLangId: unsafe extern "system" fn(_: *mut c_void, _: *mut u16) -> HRESULT,
}

Fields§

§base__: IUnknown_Vtbl§Inquire: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut IMEINFO, _: PWSTR, _: *mut u32) -> HRESULT§ConversionList: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: PCWSTR, _: u32, _: u32, _: *mut CANDIDATELIST, _: *mut u32) -> HRESULT§Configure: unsafe extern "system" fn(_: *mut c_void, _: HKL, _: HWND, _: u32, _: *const REGISTERWORDW) -> HRESULT§Destroy: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§Escape: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: u32, _: *mut c_void, _: *mut LRESULT) -> HRESULT§SetActiveContext: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: BOOL) -> HRESULT§ProcessKey: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: u32, _: u32, _: *const u8) -> HRESULT§Notify: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: u32, _: u32, _: u32) -> HRESULT§Select: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: BOOL) -> HRESULT§SetCompositionString: unsafe extern "system" fn(_: *mut c_void, _: HIMC, _: u32, _: *const c_void, _: u32, _: *const c_void, _: u32) -> HRESULT§ToAsciiEx: unsafe extern "system" fn(_: *mut c_void, _: u32, _: u32, _: *const u8, _: u32, _: HIMC, _: *mut u32, _: *mut u32) -> HRESULT§RegisterWord: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: u32, _: PCWSTR) -> HRESULT§UnregisterWord: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: u32, _: PCWSTR) -> HRESULT§GetRegisterWordStyle: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut STYLEBUFW, _: *mut u32) -> HRESULT§EnumRegisterWord: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: u32, _: PCWSTR, _: *const c_void, _: *mut *mut c_void) -> HRESULT§GetCodePageA: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§GetLangId: unsafe extern "system" fn(_: *mut c_void, _: *mut u16) -> HRESULT

Implementations§

§

impl IActiveIME_Vtbl

pub const fn new<Identity, const OFFSET: isize>() -> IActiveIME_Vtbl
where Identity: IActiveIME_Impl + IUnknownImpl,

pub fn matches(iid: &GUID) -> bool

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.