fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / oovbaapi / ooo / vba / VbFileAttribute.idl
blobe1ac3e26a41062264078f0bbc82f741960161fb5
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo { module vba {
3 constants VbFileAttribute {
4 const long vbAlias = 64;
5 const long vbArchive = 32;
6 const long vbDirectory = 16;
7 const long vbHidden = 2;
8 const long vbNormal = 0;
9 const long vbReadOnly = 1;
10 const long vbSystem = 4;
11 const long vbVolume = 8;
13 }; };
15 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */