Version 7.5.1.1, tag libreoffice-7.5.1.1
[LibreOffice.git] / sc / source / filter / inc / xlname.hxx
blobf469919ecfe691d70f8149245285cd5a5a885f55
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 #pragma once
22 #include <sal/types.h>
24 // Constants and Enumerations =================================================
26 // (0x0018, 0x0218) NAME ------------------------------------------------------
28 const sal_uInt16 EXC_ID_NAME = 0x0018;
29 const sal_uInt16 EXC_ID34_NAME = 0x0218;
31 // flags
32 const sal_uInt16 EXC_NAME_DEFAULT = 0x0000;
33 const sal_uInt16 EXC_NAME_HIDDEN = 0x0001;
34 const sal_uInt16 EXC_NAME_FUNC = 0x0002;
35 const sal_uInt16 EXC_NAME_VB = 0x0004;
36 const sal_uInt16 EXC_NAME_PROC = 0x0008;
37 const sal_uInt16 EXC_NAME_CALCEXP = 0x0010;
38 const sal_uInt16 EXC_NAME_BUILTIN = 0x0020;
39 const sal_uInt16 EXC_NAME_FGROUPMASK = 0x0FC0;
40 const sal_uInt16 EXC_NAME_BIG = 0x1000;
42 const sal_uInt8 EXC_NAME2_FUNC = 0x02; /// BIFF2 function/command flag.
44 const sal_uInt16 EXC_NAME_GLOBAL = 0; /// 0 = Globally defined name.
46 // codes for built-in names
47 const sal_Unicode EXC_BUILTIN_CONSOLIDATEAREA = '\x00';
48 const sal_Unicode EXC_BUILTIN_AUTOOPEN = '\x01';
49 const sal_Unicode EXC_BUILTIN_AUTOCLOSE = '\x02';
50 const sal_Unicode EXC_BUILTIN_EXTRACT = '\x03';
51 const sal_Unicode EXC_BUILTIN_DATABASE = '\x04';
52 const sal_Unicode EXC_BUILTIN_CRITERIA = '\x05';
53 const sal_Unicode EXC_BUILTIN_PRINTAREA = '\x06';
54 const sal_Unicode EXC_BUILTIN_PRINTTITLES = '\x07';
55 const sal_Unicode EXC_BUILTIN_RECORDER = '\x08';
56 const sal_Unicode EXC_BUILTIN_DATAFORM = '\x09';
57 const sal_Unicode EXC_BUILTIN_AUTOACTIVATE = '\x0A';
58 const sal_Unicode EXC_BUILTIN_AUTODEACTIVATE = '\x0B';
59 const sal_Unicode EXC_BUILTIN_SHEETTITLE = '\x0C';
60 const sal_Unicode EXC_BUILTIN_FILTERDATABASE = '\x0D';
61 const sal_Unicode EXC_BUILTIN_UNKNOWN = '\x0E';
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */