summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/adodb/FilterGroupEnum.idl
blob: ffa4c056cad467ff7862c5ddb50be2b1f5541da4 (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 FilterGroupEnum {
        const long adFilterAffectedRecords = 2;
        const long adFilterConflictingRecords = 5;
        const long adFilterFetchedRecords = 3;
        const long adFilterNone = 0;
        const long adFilterPendingRecords = 1;
        const long adFilterPredicate = 4;
    };
}; }; };

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