summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/adodb/PropertyAttributesEnum.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/adodb/PropertyAttributesEnum.idl')
-rw-r--r--oovbaapi/ooo/vba/adodb/PropertyAttributesEnum.idl9
1 files changed, 9 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/adodb/PropertyAttributesEnum.idl b/oovbaapi/ooo/vba/adodb/PropertyAttributesEnum.idl
new file mode 100644
index 000000000000..4b870d604a68
--- /dev/null
+++ b/oovbaapi/ooo/vba/adodb/PropertyAttributesEnum.idl
@@ -0,0 +1,9 @@
+module ooo { module vba { module adodb {
+ constants PropertyAttributesEnum {
+ const long adPropNotSupported = 0;
+ const long adPropOptional = 2;
+ const long adPropRead = 512;
+ const long adPropRequired = 1;
+ const long adPropWrite = 1024;
+ };
+}; }; };