blob: 607dc18b51ed84bb0bb6f56d3543366909faeb4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module adodb {
constants PropertyAttributesEnum {
const long adPropNotSupported = 0;
const long adPropOptional = 2;
const long adPropRead = 512;
const long adPropRequired = 1;
const long adPropWrite = 1024;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|