summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/excel/XlLinkStatus.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/excel/XlLinkStatus.idl')
-rw-r--r--oovbaapi/ooo/vba/excel/XlLinkStatus.idl18
1 files changed, 18 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/excel/XlLinkStatus.idl b/oovbaapi/ooo/vba/excel/XlLinkStatus.idl
new file mode 100644
index 000000000..e041228d5
--- /dev/null
+++ b/oovbaapi/ooo/vba/excel/XlLinkStatus.idl
@@ -0,0 +1,18 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+module ooo { module vba { module excel {
+ constants XlLinkStatus {
+ const long xlLinkStatusCopiedValues = 10;
+ const long xlLinkStatusIndeterminate = 5;
+ const long xlLinkStatusInvalidName = 7;
+ const long xlLinkStatusMissingFile = 1;
+ const long xlLinkStatusMissingSheet = 2;
+ const long xlLinkStatusNotStarted = 6;
+ const long xlLinkStatusOK = 0;
+ const long xlLinkStatusOld = 3;
+ const long xlLinkStatusSourceNotCalculated = 4;
+ const long xlLinkStatusSourceNotOpen = 8;
+ const long xlLinkStatusSourceOpen = 9;
+ };
+}; }; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */