summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/dao/RecordsetTypeEnum.idl
blob: 7c61aef37f798d943b64ee40ea7b8f3e77a9075b (plain)
1
2
3
4
5
6
7
8
9
module ooo { module vba { module dao {
    constants RecordsetTypeEnum {
        const long dbOpenDynamic = 16;
        const long dbOpenDynaset = 2;
        const long dbOpenForwardOnly = 8;
        const long dbOpenSnapshot = 4;
        const long dbOpenTable = 1;
    };
}; }; };