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