summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/access/AcOutputObjectType.idl
blob: db0f301db2795526b3899b6a0dfd2ce413b4f2c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module access {
    constants AcOutputObjectType {
        const long acOutputDataAccessPage = 6;
        const long acOutputForm = 2;
        const long acOutputFunction = 10;
        const long acOutputModule = 5;
        const long acOutputQuery = 1;
        const long acOutputReport = 3;
        const long acOutputServerView = 7;
        const long acOutputStoredProcedure = 9;
        const long acOutputTable = 0;
    };
}; }; };

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