summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/adodb/CommandTypeEnum.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/adodb/CommandTypeEnum.idl')
-rw-r--r--oovbaapi/ooo/vba/adodb/CommandTypeEnum.idl14
1 files changed, 14 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/adodb/CommandTypeEnum.idl b/oovbaapi/ooo/vba/adodb/CommandTypeEnum.idl
new file mode 100644
index 000000000..7489ed991
--- /dev/null
+++ b/oovbaapi/ooo/vba/adodb/CommandTypeEnum.idl
@@ -0,0 +1,14 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+module ooo { module vba { module adodb {
+ constants CommandTypeEnum {
+ const long adCmdFile = 256;
+ const long adCmdStoredProc = 4;
+ const long adCmdTable = 2;
+ const long adCmdTableDirect = 512;
+ const long adCmdText = 1;
+ const long adCmdUnknown = 8;
+ const long adCmdUnspecified = -1;
+ };
+}; }; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */