1
0
Fork 0
libreoffice/oovbaapi/ooo/vba/VbFileAttribute.idl
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00

15 lines
476 B
Text

/* -*- 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: */