summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/VbFileAttribute.idl
blob: e1ac3e26a41062264078f0bbc82f741960161fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba {
    constants VbFileAttribute {
        const long vbAlias = 64;
        const long vbArchive = 32;
        const long vbDirectory = 16;
        const long vbHidden = 2;
        const long vbNormal = 0;
        const long vbReadOnly = 1;
        const long vbSystem = 4;
        const long vbVolume = 8;
    };
}; };

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