summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/VbVarType.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/VbVarType.idl')
-rw-r--r--oovbaapi/ooo/vba/VbVarType.idl25
1 files changed, 25 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/VbVarType.idl b/oovbaapi/ooo/vba/VbVarType.idl
new file mode 100644
index 000000000..383ea53c1
--- /dev/null
+++ b/oovbaapi/ooo/vba/VbVarType.idl
@@ -0,0 +1,25 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+module ooo { module vba {
+ constants VbVarType {
+ const long vbArray = 8192;
+ const long vbBoolean = 11;
+ const long vbByte = 17;
+ const long vbCurrency = 6;
+ const long vbDataObject = 13;
+ const long vbDate = 7;
+ const long vbDecimal = 14;
+ const long vbDouble = 5;
+ const long vbEmpty = 0;
+ const long vbError = 10;
+ const long vbInteger = 2;
+ const long vbLong = 3;
+ const long vbNull = 1;
+ const long vbObject = 9;
+ const long vbSingle = 4;
+ const long vbString = 8;
+ const long vbUserDefinedType = 36;
+ const long vbVariant = 12;
+ };
+}; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */