1 #ifndef INCLUDED_HTMLFMTFLT_HXX
2 #define INCLUDED_HTMLFMTFLT_HXX
4 #include <com/sun/star/uno/Sequence.hxx>
6 /* Transform plain HTML into the format expected by MS Office.
8 com::sun::star::uno::Sequence
<sal_Int8
> TextHtmlToHTMLFormat(com::sun::star::uno::Sequence
<sal_Int8
>& aTextHtml
);
10 /* Transform the MS Office HTML format into plain HTML.
12 com::sun::star::uno::Sequence
<sal_Int8
> HTMLFormatToTextHtml(const com::sun::star::uno::Sequence
<sal_Int8
>& aHTMLFormat
);
14 /* Detects whether the given byte sequence contains the MS Office Html format.
16 @returns True if the MS Office Html format will be detected False otherwise.
18 bool isHTMLFormat (const com::sun::star::uno::Sequence
<sal_Int8
>& aHtmlSequence
);