Trait windows::Win32::UI::TextServices::IAccStore_Impl

pub trait IAccStore_Impl: Sized {
    // Required methods
    fn Register(&self, riid: *const GUID, punk: Option<&IUnknown>) -> Result<()>;
    fn Unregister(&self, punk: Option<&IUnknown>) -> Result<()>;
    fn GetDocuments(&self) -> Result<IEnumUnknown>;
    fn LookupByHWND(&self, hwnd: HWND, riid: *const GUID) -> Result<IUnknown>;
    fn LookupByPoint(&self, pt: &POINT, riid: *const GUID) -> Result<IUnknown>;
    fn OnDocumentFocus(&self, punk: Option<&IUnknown>) -> Result<()>;
    fn GetFocused(&self, riid: *const GUID) -> Result<IUnknown>;
}

Required Methods§

fn Register(&self, riid: *const GUID, punk: Option<&IUnknown>) -> Result<()>

fn Unregister(&self, punk: Option<&IUnknown>) -> Result<()>

fn GetDocuments(&self) -> Result<IEnumUnknown>

fn LookupByHWND(&self, hwnd: HWND, riid: *const GUID) -> Result<IUnknown>

fn LookupByPoint(&self, pt: &POINT, riid: *const GUID) -> Result<IUnknown>

fn OnDocumentFocus(&self, punk: Option<&IUnknown>) -> Result<()>

fn GetFocused(&self, riid: *const GUID) -> Result<IUnknown>

Object Safety§

This trait is not object safe.

Implementors§