1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo
{ module vba
{ module access
{
3 constants AcDataObjectType
{
4 const long acActiveDataObject
= -1;
5 const long acDataForm
= 2;
6 const long acDataFunction
= 10;
7 const long acDataQuery
= 1;
8 const long acDataServerView
= 7;
9 const long acDataStoredProcedure
= 9;
10 const long acDataTable
= 0;
14 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */