1
0
Fork 0
libreoffice/oovbaapi/ooo/vba/adodb/CursorOptionEnum.idl
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00

20 lines
736 B
Text

/* -*- 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: */