summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/adodb/EventStatusEnum.idl
blob: b906b25aca1be6e26bb74da491b86e7ba297b516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module adodb {
    constants EventStatusEnum {
        const long adStatusCancel = 4;
        const long adStatusCantDeny = 3;
        const long adStatusErrorsOccurred = 2;
        const long adStatusOK = 1;
        const long adStatusUnwantedEvent = 5;
    };
}; }; };

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