diff options
Diffstat (limited to '')
-rw-r--r-- | oovbaapi/ooo/vba/dao/RelationAttributeEnum.idl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/dao/RelationAttributeEnum.idl b/oovbaapi/ooo/vba/dao/RelationAttributeEnum.idl new file mode 100644 index 000000000..510af0544 --- /dev/null +++ b/oovbaapi/ooo/vba/dao/RelationAttributeEnum.idl @@ -0,0 +1,14 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +module ooo { module vba { module dao { + constants RelationAttributeEnum { + const long dbRelationDeleteCascade = 4096; + const long dbRelationDontEnforce = 2; + const long dbRelationInherited = 4; + const long dbRelationLeft = 16777216; + const long dbRelationRight = 33554432; + const long dbRelationUnique = 1; + const long dbRelationUpdateCascade = 256; + }; +}; }; }; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |