diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-21 15:45:33 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-21 15:45:33 +0000 |
commit | 740cff88abc6660ba4893bb9faf0deb895178ace (patch) | |
tree | 65fa84f5c44af981a5f48dbcf77f9ca3ca588d6c /sfx2 | |
parent | 1281d9f3cc29b7b6bcd8f9933c27f1d8f3a0543f (diff) |
INTEGRATION: CWS dba24c (1.1.2); FILE ADDED
2007/10/16 08:17:36 fs 1.1.2.1: in preparation of #i52527# #i73705#: outsourced the SIGNATURE_STATE_ defines from objsh.hxx
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/inc/sfx2/signaturestate.hxx | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/sfx2/inc/sfx2/signaturestate.hxx b/sfx2/inc/sfx2/signaturestate.hxx new file mode 100644 index 000000000000..bdb95e45c0a4 --- /dev/null +++ b/sfx2/inc/sfx2/signaturestate.hxx @@ -0,0 +1,47 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: signaturestate.hxx,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: ihi $ $Date: 2007-11-21 16:45:33 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + ************************************************************************/ + +#ifndef SFX2_SIGNATURESTATE_HXX +#define SFX2_SIGNATURESTATE_HXX + +// xmlsec05, check with SFX team +#define SIGNATURESTATE_UNKNOWN (sal_Int16)(-1) +#define SIGNATURESTATE_NOSIGNATURES (sal_Int16)0 +#define SIGNATURESTATE_SIGNATURES_OK (sal_Int16)1 +#define SIGNATURESTATE_SIGNATURES_BROKEN (sal_Int16)2 +#define SIGNATURESTATE_SIGNATURES_INVALID (sal_Int16)3 // State was SIGNATURES_OK, but doc is modified now +#define SIGNATURESTATE_SIGNATURES_NOTVALIDATED (sal_Int16)4 // signature is OK, but certificate could not be validated + +#endif // SFX2_SIGNATURESTATE_HXX |