fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / oovbaapi / ooo / vba / adodb / IsolationLevelEnum.idl
blob9dca88287af6fe241ba76fa5a24ebfa544c36354
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo { module vba { module adodb {
3 constants IsolationLevelEnum {
4 const long adXactBrowse = 256;
5 const long adXactChaos = 16;
6 const long adXactCursorStability = 4096;
7 const long adXactIsolated = 1048576;
8 const long adXactReadCommitted = 4096;
9 const long adXactReadUncommitted = 256;
10 const long adXactRepeatableRead = 65536;
11 const long adXactSerializable = 1048576;
12 const long adXactUnspecified = -1;
14 }; }; };
16 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */