Trait windows::Win32::Media::Speech::ISpProperties_Impl

pub trait ISpProperties_Impl: Sized {
    // Required methods
    fn SetPropertyNum(&self, pname: &PCWSTR, lvalue: i32) -> Result<()>;
    fn GetPropertyNum(&self, pname: &PCWSTR, plvalue: *mut i32) -> Result<()>;
    fn SetPropertyString(&self, pname: &PCWSTR, pvalue: &PCWSTR) -> Result<()>;
    fn GetPropertyString(&self, pname: &PCWSTR) -> Result<PWSTR>;
}

Required Methods§

fn SetPropertyNum(&self, pname: &PCWSTR, lvalue: i32) -> Result<()>

fn GetPropertyNum(&self, pname: &PCWSTR, plvalue: *mut i32) -> Result<()>

fn SetPropertyString(&self, pname: &PCWSTR, pvalue: &PCWSTR) -> Result<()>

fn GetPropertyString(&self, pname: &PCWSTR) -> Result<PWSTR>

Object Safety§

This trait is not object safe.

Implementors§