summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/dao/LockTypeEnum.idl
blob: e129b6150cfc66105eb368fc8f1f46e4d8aecbb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module dao {
    constants LockTypeEnum {
        const long dbOptimistic = 3;
        const long dbOptimisticBatch = 5;
        const long dbOptimisticValue = 1;
        const long dbPessimistic = 2;
    };
}; }; };

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */