1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 module ooo
{ module vba
{ module adodb
{
11 constants RecordStatusEnum
{
12 const long adRecCanceled
= 256;
13 const long adRecCantRelease
= 1024;
14 const long adRecConcurrencyViolation
= 2048;
15 const long adRecDBDeleted
= 262144;
16 const long adRecDeleted
= 4;
17 const long adRecIntegrityViolation
= 4096;
18 const long adRecInvalid
= 16;
19 const long adRecMaxChangesExceeded
= 8192;
20 const long adRecModified
= 2;
21 const long adRecMultipleChanges
= 64;
22 const long adRecNew
= 1;
23 const long adRecObjectOpen
= 16384;
24 const long adRecOK
= 0;
25 const long adRecOutOfMemory
= 32768;
26 const long adRecPendingChanges
= 128;
27 const long adRecPermissionDenied
= 65536;
28 const long adRecSchemaViolation
= 131072;
29 const long adRecUnmodified
= 8;
32 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */