summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/dao/RecordsetTypeEnum.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/dao/RecordsetTypeEnum.idl')
-rw-r--r--oovbaapi/ooo/vba/dao/RecordsetTypeEnum.idl12
1 files changed, 12 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/dao/RecordsetTypeEnum.idl b/oovbaapi/ooo/vba/dao/RecordsetTypeEnum.idl
new file mode 100644
index 000000000..dcb5559f0
--- /dev/null
+++ b/oovbaapi/ooo/vba/dao/RecordsetTypeEnum.idl
@@ -0,0 +1,12 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+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;
+ };
+}; }; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */