summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/access/AcObjectType.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/access/AcObjectType.idl')
-rw-r--r--oovbaapi/ooo/vba/access/AcObjectType.idl19
1 files changed, 19 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/access/AcObjectType.idl b/oovbaapi/ooo/vba/access/AcObjectType.idl
new file mode 100644
index 000000000..9b8d6e006
--- /dev/null
+++ b/oovbaapi/ooo/vba/access/AcObjectType.idl
@@ -0,0 +1,19 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+module ooo { module vba { module access {
+ constants AcObjectType {
+ const long acDataAccessPage = 6;
+ const long acDefault = -1;
+ const long acDiagram = 8;
+ const long acForm = 2;
+ const long acFunction = 10;
+ const long acMacro = 4;
+ const long acModule = 5;
+ const long acQuery = 1;
+ const long acReport = 3;
+ const long acServerView = 7;
+ const long acStoredProcedure = 9;
+ const long acTable = 0;
+ };
+}; }; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */