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