1
0
Fork 0
libreoffice/oovbaapi/ooo/vba/adodb/IsolationLevelEnum.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

16 lines
631 B
Text

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module adodb {
constants IsolationLevelEnum {
const long adXactBrowse = 256;
const long adXactChaos = 16;
const long adXactCursorStability = 4096;
const long adXactIsolated = 1048576;
const long adXactReadCommitted = 4096;
const long adXactReadUncommitted = 256;
const long adXactRepeatableRead = 65536;
const long adXactSerializable = 1048576;
const long adXactUnspecified = -1;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */