summaryrefslogtreecommitdiff
path: root/desktop/source/app/officeipcthread.hxx
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2001-08-07 10:25:00 +0000
committerCarsten Driesner <cd@openoffice.org>2001-08-07 10:25:00 +0000
commit3bf1731d0dbb0bb371e54c4253df5481119a26b7 (patch)
tree29a7b630e798da67e4facb79e660e16ee6e2a479 /desktop/source/app/officeipcthread.hxx
parentea03cb56b31b53df2588711231b07355d83d91f9 (diff)
#81412# error handling during startup changed
Diffstat (limited to 'desktop/source/app/officeipcthread.hxx')
-rw-r--r--desktop/source/app/officeipcthread.hxx13
1 files changed, 10 insertions, 3 deletions
diff --git a/desktop/source/app/officeipcthread.hxx b/desktop/source/app/officeipcthread.hxx
index f2e27923668f..8d940008b85a 100644
--- a/desktop/source/app/officeipcthread.hxx
+++ b/desktop/source/app/officeipcthread.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: officeipcthread.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: cd $ $Date: 2001-07-27 11:12:55 $
+ * last change: $Author: cd $ $Date: 2001-08-07 11:25:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -118,6 +118,13 @@ class OfficeIPCThread : public vos::OThread
virtual void SAL_CALL run();
public:
+ enum Status
+ {
+ IPC_STATUS_OK,
+ IPC_STATUS_2ND_OFFICE,
+ IPC_STATUS_BOOTSTRAP_ERROR
+ };
+
virtual ~OfficeIPCThread();
// controlling pipe communication during shutdown
@@ -127,7 +134,7 @@ class OfficeIPCThread : public vos::OThread
static void RequestsCompleted( int n = 1 );
// return FALSE if second office
- static sal_Bool EnableOfficeIPCThread();
+ static Status EnableOfficeIPCThread();
static void DisableOfficeIPCThread();
};