summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/adodb/DataTypeEnum.idl
blob: 411611279d75bfea5c2073cfeebdf6b96fbad395 (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
/* -*- 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/.
 */
module ooo { module vba { module adodb {
    constants DataTypeEnum {
        const long adArray = 8192;
        const long adBigInt = 20;
        const long adBinary = 128;
        const long adBoolean = 11;
        const long adBSTR = 8;
        const long adChapter = 136;
        const long adChar = 129;
        const long adCurrency = 6;
        const long adDate = 7;
        const long adDBDate = 133;
        const long adDBTime = 134;
        const long adDBTimeStamp = 135;
        const long adDecimal = 14;
        const long adDouble = 5;
        const long adEmpty = 0;
        const long adError = 10;
        const long adFileTime = 64;
        const long adGUID = 72;
        const long adIDispatch = 9;
        const long adInteger = 3;
        const long adIUnknown = 13;
        const long adLongVarBinary = 205;
        const long adLongVarChar = 201;
        const long adLongVarWChar = 203;
        const long adNumeric = 131;
        const long adPropVariant = 138;
        const long adSingle = 4;
        const long adSmallInt = 2;
        const long adTinyInt = 16;
        const long adUnsignedBigInt = 21;
        const long adUnsignedInt = 19;
        const long adUnsignedSmallInt = 18;
        const long adUnsignedTinyInt = 17;
        const long adUserDefined = 132;
        const long adVarBinary = 204 ;
        const long adVarChar = 200;
        const long adVariant = 12;
        const long adVarNumeric = 139;
        const long adVarWChar = 202;
        const long adWChar = 130;
    };
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */