1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo
{ module vba
{ module dao
{
3 constants ParameterDirectionEnum
{
4 const long dbParamInput
= 1;
5 const long dbParamInputOutput
= 3;
6 const long dbParamOutput
= 2;
7 const long dbParamReturnValue
= 4;
11 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */