summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/adodb/CommandTypeEnum.idl
blob: 7489ed9919a224d69bb35334f6b4c7eea06069dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module adodb {
    constants CommandTypeEnum {
        const long adCmdFile = 256;
        const long adCmdStoredProc = 4;
        const long adCmdTable = 2;
        const long adCmdTableDirect = 512;
        const long adCmdText = 1;
        const long adCmdUnknown = 8;
        const long adCmdUnspecified = -1;
    };
}; }; };

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */