1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
31 #include <sal/types.h>
33 // Constants and Enumerations =================================================
35 // (0x0018, 0x0218) NAME ------------------------------------------------------
37 const sal_uInt16 EXC_ID_NAME
= 0x0018;
38 const sal_uInt16 EXC_ID34_NAME
= 0x0218;
41 const sal_uInt16 EXC_NAME_DEFAULT
= 0x0000;
42 const sal_uInt16 EXC_NAME_HIDDEN
= 0x0001;
43 const sal_uInt16 EXC_NAME_FUNC
= 0x0002;
44 const sal_uInt16 EXC_NAME_VB
= 0x0004;
45 const sal_uInt16 EXC_NAME_PROC
= 0x0008;
46 const sal_uInt16 EXC_NAME_CALCEXP
= 0x0010;
47 const sal_uInt16 EXC_NAME_BUILTIN
= 0x0020;
48 const sal_uInt16 EXC_NAME_FGROUPMASK
= 0x0FC0;
49 const sal_uInt16 EXC_NAME_BIG
= 0x1000;
51 const sal_uInt8 EXC_NAME2_FUNC
= 0x02; /// BIFF2 function/command flag.
53 const sal_uInt16 EXC_NAME_GLOBAL
= 0; /// 0 = Globally defined name.
55 // codes for built-in names
56 const sal_Unicode EXC_BUILTIN_CONSOLIDATEAREA
= '\x00';
57 const sal_Unicode EXC_BUILTIN_AUTOOPEN
= '\x01';
58 const sal_Unicode EXC_BUILTIN_AUTOCLOSE
= '\x02';
59 const sal_Unicode EXC_BUILTIN_EXTRACT
= '\x03';
60 const sal_Unicode EXC_BUILTIN_DATABASE
= '\x04';
61 const sal_Unicode EXC_BUILTIN_CRITERIA
= '\x05';
62 const sal_Unicode EXC_BUILTIN_PRINTAREA
= '\x06';
63 const sal_Unicode EXC_BUILTIN_PRINTTITLES
= '\x07';
64 const sal_Unicode EXC_BUILTIN_RECORDER
= '\x08';
65 const sal_Unicode EXC_BUILTIN_DATAFORM
= '\x09';
66 const sal_Unicode EXC_BUILTIN_AUTOACTIVATE
= '\x0A';
67 const sal_Unicode EXC_BUILTIN_AUTODEACTIVATE
= '\x0B';
68 const sal_Unicode EXC_BUILTIN_SHEETTITLE
= '\x0C';
69 const sal_Unicode EXC_BUILTIN_FILTERDATABASE
= '\x0D';
70 const sal_Unicode EXC_BUILTIN_UNKNOWN
= '\x0E';
72 // ============================================================================