summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/access/AcSendObjectType.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/access/AcSendObjectType.idl')
-rw-r--r--oovbaapi/ooo/vba/access/AcSendObjectType.idl14
1 files changed, 14 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/access/AcSendObjectType.idl b/oovbaapi/ooo/vba/access/AcSendObjectType.idl
new file mode 100644
index 000000000..0ffdd9fae
--- /dev/null
+++ b/oovbaapi/ooo/vba/access/AcSendObjectType.idl
@@ -0,0 +1,14 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+module ooo { module vba { module access {
+ constants AcSendObjectType {
+ const long acSendDataAccessPage = 6;
+ const long acSendForm = 2;
+ const long acSendModule = 5;
+ const long acSendNoObject = -1;
+ const long acSendQuery = 1;
+ const long acSendReport = 3;
+ const long acSendTable = 0;
+ };
+}; }; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */