Trait windows::Win32::Data::Xml::MsXml::IVBSAXDTDHandler_Impl

pub trait IVBSAXDTDHandler_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn notationDecl(
        &self,
        strname: *mut BSTR,
        strpublicid: *mut BSTR,
        strsystemid: *mut BSTR
    ) -> Result<()>;
    fn unparsedEntityDecl(
        &self,
        strname: *mut BSTR,
        strpublicid: *mut BSTR,
        strsystemid: *mut BSTR,
        strnotationname: *mut BSTR
    ) -> Result<()>;
}

Required Methods§

fn notationDecl( &self, strname: *mut BSTR, strpublicid: *mut BSTR, strsystemid: *mut BSTR ) -> Result<()>

fn unparsedEntityDecl( &self, strname: *mut BSTR, strpublicid: *mut BSTR, strsystemid: *mut BSTR, strnotationname: *mut BSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§