summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerbert Duerr <hdu@openoffice.org>2006-06-15 07:11:27 +0000
committerHerbert Duerr <hdu@openoffice.org>2006-06-15 07:11:27 +0000
commit6e04f4ce60f91b043dc31994f61c1d36890ba72f (patch)
tree1bd19973bd0292951cfdca4df9ff34929c54a522
parent81e66b889baf01e57b1196886e928132d1064ce1 (diff)
#i65904# add formats which allow cleaner inits and checks
-rw-r--r--basebmp/inc/basebmp/scanlineformats.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/basebmp/inc/basebmp/scanlineformats.hxx b/basebmp/inc/basebmp/scanlineformats.hxx
index cabda6cef69a..5999ee96db6a 100644
--- a/basebmp/inc/basebmp/scanlineformats.hxx
+++ b/basebmp/inc/basebmp/scanlineformats.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: scanlineformats.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: thb $ $Date: 2006-06-02 13:57:25 $
+ * last change: $Author: hdu $ $Date: 2006-06-15 08:11:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -70,6 +70,7 @@
namespace basebmp { namespace Format
{
+ static const sal_Int32 NONE = 0;
static const sal_Int32 ONE_BIT_MSB_GRAY = (sal_Int32)0x01;
static const sal_Int32 ONE_BIT_LSB_GRAY = (sal_Int32)0x02;
static const sal_Int32 ONE_BIT_MSB_PAL = (sal_Int32)0x03;
@@ -83,6 +84,7 @@ namespace basebmp { namespace Format
static const sal_Int32 SIXTEEN_BIT_TC_MASK = (sal_Int32)0x0B;
static const sal_Int32 TWENTYFOUR_BIT_TC_MASK = (sal_Int32)0x0C;
static const sal_Int32 THIRTYTWO_BIT_TC_MASK = (sal_Int32)0x0D;
+ static const sal_Int32 MAX = (sal_Int32)0x0D;
} }
#endif /* INCLUDED_BASEBMP_SCANLINEFORMATS_HXX */