10 lines
348 B
Text
10 lines
348 B
Text
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
module ooo { module vba { module adodb {
|
|
constants ParameterAttributesEnum {
|
|
const long adParamLong = 128;
|
|
const long adParamNullable = 64;
|
|
const long adParamSigned = 16;
|
|
};
|
|
}; }; };
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|