summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/access/AcObjectType.idl
blob: 9b8d6e006c744d47bb38b2bbaf1b88e205117c80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module access {
    constants AcObjectType {
        const long acDataAccessPage = 6;
        const long acDefault = -1;
        const long acDiagram = 8;
        const long acForm = 2;
        const long acFunction = 10;
        const long acMacro = 4;
        const long acModule = 5;
        const long acQuery = 1;
        const long acReport = 3;
        const long acServerView = 7;
        const long acStoredProcedure = 9;
        const long acTable = 0;
    };
}; }; };

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