Update ooo320-m1
[ooovba.git] / vcl / aqua / source / dtrans / PictToBmpFlt.hxx
blobc22abe908b39d23c9eda0c51e82ee4d64b6e0112
1 #ifndef INCLUDED_PICTTOBMPFLT_HXX
2 #define INCLUDED_PICTTOBMPFLT_HXX
4 #include <com/sun/star/uno/Sequence.hxx>
6 /* Transform PICT into the a Window BMP.
8 Returns true if the conversion was successful false
9 otherwise.
11 bool PICTtoBMP(com::sun::star::uno::Sequence<sal_Int8>& aPict,
12 com::sun::star::uno::Sequence<sal_Int8>& aBmp);
14 /* Transform a Windows BMP to a PICT.
16 Returns true if the conversion was successful false
17 otherwise.
19 bool BMPtoPICT(com::sun::star::uno::Sequence<sal_Int8>& aBmp,
20 com::sun::star::uno::Sequence<sal_Int8>& aPict);
22 #endif