pub trait IRSOPInformation_Impl: Sized {
    // Required methods
    fn GetNamespace(
        &self,
        dwsection: u32,
        pszname: PWSTR,
        cchmaxlength: i32,
    ) -> Result<()>;
    fn GetFlags(&self, pdwflags: *mut u32) -> Result<()>;
    fn GetEventLogEntryText(
        &self,
        pszeventsource: &PCWSTR,
        pszeventlogname: &PCWSTR,
        pszeventtime: &PCWSTR,
        dweventid: u32,
    ) -> Result<PWSTR>;
}

Required Methods§

fn GetNamespace( &self, dwsection: u32, pszname: PWSTR, cchmaxlength: i32, ) -> Result<()>

fn GetFlags(&self, pdwflags: *mut u32) -> Result<()>

fn GetEventLogEntryText( &self, pszeventsource: &PCWSTR, pszeventlogname: &PCWSTR, pszeventtime: &PCWSTR, dweventid: u32, ) -> Result<PWSTR>

Object Safety§

This trait is not object safe.

Implementors§