blob: bcf885cc7cf9d7cafc19fc57f3f91dcab0e0f0e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
module ooo { module vba { module excel {
constants XlFileFormat {
const long xlAddIn = 18;
const long xlCSV = 6;
const long xlCSVMac = 22;
const long xlCSVMSDOS = 24;
const long xlCSVWindows = 23;
const long xlCurrentPlatformText = -4158;
const long xlDBF2 = 7;
const long xlDBF3 = 8;
const long xlDBF4 = 11;
const long xlDIF = 9;
const long xlExcel2 = 16;
const long xlExcel2FarEast = 27;
const long xlExcel3 = 29;
const long xlExcel4 = 33;
const long xlExcel4Workbook = 35;
const long xlExcel5 = 39;
const long xlExcel7 = 39;
const long xlExcel9795 = 43;
const long xlHtml = 44;
const long xlIntlAddIn = 26;
const long xlIntlMacro = 25;
const long xlSYLK = 2;
const long xlTemplate = 17;
const long xlTextMac = 19;
const long xlTextMSDOS = 21;
const long xlTextPrinter = 36;
const long xlTextWindows = 20;
const long xlUnicodeText = 42;
const long xlWebArchive = 45;
const long xlWJ2WD1 = 14;
const long xlWJ3 = 40;
const long xlWJ3FJ3 = 41;
const long xlWK1 = 5;
const long xlWK1ALL = 31;
const long xlWK1FMT = 30;
const long xlWK3 = 15;
const long xlWK3FM3 = 32;
const long xlWK4 = 38;
const long xlWKS = 4;
const long xlWorkbookNormal = -4143;
const long xlWorks2FarEast = 28;
const long xlWQ1 = 34;
const long xlXMLSpreadsheet = 46;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|