summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/adodb/SeekEnum.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/adodb/SeekEnum.idl')
-rw-r--r--oovbaapi/ooo/vba/adodb/SeekEnum.idl13
1 files changed, 13 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/adodb/SeekEnum.idl b/oovbaapi/ooo/vba/adodb/SeekEnum.idl
new file mode 100644
index 000000000..579d65a44
--- /dev/null
+++ b/oovbaapi/ooo/vba/adodb/SeekEnum.idl
@@ -0,0 +1,13 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+module ooo { module vba { module adodb {
+ constants SeekEnum {
+ const long adSeekAfter = 8;
+ const long adSeekAfterEQ = 4;
+ const long adSeekBefore = 32;
+ const long adSeekBeforeEQ = 16;
+ const long adSeekFirstEQ = 1;
+ const long adSeekLastEQ = 2;
+ };
+}; }; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */