blob: afd148c14ec46575169f6651900f711edfd8095b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* -*- 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: */
|