blob: 29e9c535546f24fc4b887437c6142911741b79dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef INCLUDED_PICTTOBMPFLT_HXX
#define INCLUDED_PICTTOBMPFLT_HXX
#include <com/sun/star/uno/Sequence.hxx>
/* Transform PICT into the a Window BMP.
Returns true if the conversion was successful false
otherwise.
*/
bool PICTtoBMP(com::sun::star::uno::Sequence<sal_Int8>& aPict,
com::sun::star::uno::Sequence<sal_Int8>& aBmp);
/* Transform a Windows BMP to a PICT.
Returns true if the conversion was successful false
otherwise.
*/
bool BMPtoPICT(com::sun::star::uno::Sequence<sal_Int8>& aBmp,
com::sun::star::uno::Sequence<sal_Int8>& aPict);
#endif
|