summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/access/AcExportXMLObjectType.idl
blob: da90489d68666234478c26fc7caa6c561cf675bf (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 access {
    constants AcExportXMLObjectType {
        const long acExportForm = 2;
        const long acExportFunction = 10;
        const long acExportQuery = 1;
        const long acExportReport = 3;
        const long acExportServerView = 7;
        const long acExportStoredProcedure = 9;
        const long acExportTable = 0;
    };
}; }; };

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