fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / filter / inc / xlname.hxx
blobd797bab56692954f5ead3d662f135c7473d081c9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SC_SOURCE_FILTER_INC_XLNAME_HXX
21 #define INCLUDED_SC_SOURCE_FILTER_INC_XLNAME_HXX
23 #include <sal/types.h>
25 // Constants and Enumerations =================================================
27 // (0x0018, 0x0218) NAME ------------------------------------------------------
29 const sal_uInt16 EXC_ID_NAME = 0x0018;
30 const sal_uInt16 EXC_ID34_NAME = 0x0218;
32 // flags
33 const sal_uInt16 EXC_NAME_DEFAULT = 0x0000;
34 const sal_uInt16 EXC_NAME_HIDDEN = 0x0001;
35 const sal_uInt16 EXC_NAME_FUNC = 0x0002;
36 const sal_uInt16 EXC_NAME_VB = 0x0004;
37 const sal_uInt16 EXC_NAME_PROC = 0x0008;
38 const sal_uInt16 EXC_NAME_CALCEXP = 0x0010;
39 const sal_uInt16 EXC_NAME_BUILTIN = 0x0020;
40 const sal_uInt16 EXC_NAME_FGROUPMASK = 0x0FC0;
41 const sal_uInt16 EXC_NAME_BIG = 0x1000;
43 const sal_uInt8 EXC_NAME2_FUNC = 0x02; /// BIFF2 function/command flag.
45 const sal_uInt16 EXC_NAME_GLOBAL = 0; /// 0 = Globally defined name.
47 // codes for built-in names
48 const sal_Unicode EXC_BUILTIN_CONSOLIDATEAREA = '\x00';
49 const sal_Unicode EXC_BUILTIN_AUTOOPEN = '\x01';
50 const sal_Unicode EXC_BUILTIN_AUTOCLOSE = '\x02';
51 const sal_Unicode EXC_BUILTIN_EXTRACT = '\x03';
52 const sal_Unicode EXC_BUILTIN_DATABASE = '\x04';
53 const sal_Unicode EXC_BUILTIN_CRITERIA = '\x05';
54 const sal_Unicode EXC_BUILTIN_PRINTAREA = '\x06';
55 const sal_Unicode EXC_BUILTIN_PRINTTITLES = '\x07';
56 const sal_Unicode EXC_BUILTIN_RECORDER = '\x08';
57 const sal_Unicode EXC_BUILTIN_DATAFORM = '\x09';
58 const sal_Unicode EXC_BUILTIN_AUTOACTIVATE = '\x0A';
59 const sal_Unicode EXC_BUILTIN_AUTODEACTIVATE = '\x0B';
60 const sal_Unicode EXC_BUILTIN_SHEETTITLE = '\x0C';
61 const sal_Unicode EXC_BUILTIN_FILTERDATABASE = '\x0D';
62 const sal_Unicode EXC_BUILTIN_UNKNOWN = '\x0E';
64 #endif
66 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */