pub trait IObjectWithProgID_Impl: Sized {
    // Required methods
    fn SetProgID(&self, pszprogid: &PCWSTR) -> Result<()>;
    fn GetProgID(&self) -> Result<PWSTR>;
}

Required Methods§

fn SetProgID(&self, pszprogid: &PCWSTR) -> Result<()>

fn GetProgID(&self) -> Result<PWSTR>

Object Safety§

This trait is not object safe.

Implementors§