blob: aacfe800ee32363d2ace3b228e7f22d41256327e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module adodb {
constants CursorOptionEnum {
const long adAddNew = 16778240;
const long adApproxPosition = 16384;
const long adBookmark = 8192;
const long adDelete = 16779264;
const long adFind = 524288;
const long adHoldRecords = 256;
const long adIndex = 8388608;
const long adMovePrevious = 512;
const long adNotify = 262144;
const long adResync = 131072;
const long adSeek = 4194304;
const long adUpdate = 16809984;
const long adUpdateBatch = 65536;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|