1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo
{ module vba
{ module access
{
3 constants AcObjectType
{
4 const long acDataAccessPage
= 6;
5 const long acDefault
= -1;
6 const long acDiagram
= 8;
8 const long acFunction
= 10;
9 const long acMacro
= 4;
10 const long acModule
= 5;
11 const long acQuery
= 1;
12 const long acReport
= 3;
13 const long acServerView
= 7;
14 const long acStoredProcedure
= 9;
15 const long acTable
= 0;
19 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */