summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/office/MsoAlertButtonType.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/office/MsoAlertButtonType.idl')
-rw-r--r--oovbaapi/ooo/vba/office/MsoAlertButtonType.idl11
1 files changed, 11 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/office/MsoAlertButtonType.idl b/oovbaapi/ooo/vba/office/MsoAlertButtonType.idl
new file mode 100644
index 000000000000..57194af93594
--- /dev/null
+++ b/oovbaapi/ooo/vba/office/MsoAlertButtonType.idl
@@ -0,0 +1,11 @@
+module ooo { module vba { module office {
+ constants MsoAlertButtonType {
+ const long msoAlertButtonAbortRetryIgnore = 2;
+ const long msoAlertButtonOK = 0;
+ const long msoAlertButtonOKCancel = 1;
+ const long msoAlertButtonRetryCancel = 5;
+ const long msoAlertButtonYesAllNoCancel = 6;
+ const long msoAlertButtonYesNo = 4;
+ const long msoAlertButtonYesNoCancel = 3;
+ };
+}; }; };