Update ooo320-m1
[ooovba.git] / vcl / aqua / source / dtrans / HtmlFmtFlt.hxx
bloba900c58a4e2c373e25dfbf38272215e4aa779032
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.
7 */
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);
20 #endif