From 6e04f4ce60f91b043dc31994f61c1d36890ba72f Mon Sep 17 00:00:00 2001 From: Herbert Duerr Date: Thu, 15 Jun 2006 07:11:27 +0000 Subject: [PATCH] #i65904# add formats which allow cleaner inits and checks --- basebmp/inc/basebmp/scanlineformats.hxx | 6 ++++-- 1 file 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 */