summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/adodb/CEResyncEnum.idl
blob: 0cf1f2e56b231886ec1533f66655b35f7ac57db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module adodb {
    constants CEResyncEnum {
        const long adResyncAll = 15;
        const long adResyncAutoIncrement = 1;
        const long adResyncConflicts = 2;
        const long adResyncInserts = 8;
        const long adResyncNone = 0;
        const long adResyncUpdates = 4;
    };
}; }; };

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