summaryrefslogtreecommitdiff
path: root/cppu/inc/uno/cuno.h
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-08-21 08:17:07 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-08-21 08:17:07 +0000
commit4e320a40b5943337db4b39f205f6d09b4ce0edb6 (patch)
tree04317294ed046e44d614d1c9c061104b4b842975 /cppu/inc/uno/cuno.h
parent0f562b5ac296474abba4a05e4336674ca257e4b0 (diff)
#88337# documentation review
Diffstat (limited to 'cppu/inc/uno/cuno.h')
-rw-r--r--cppu/inc/uno/cuno.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cppu/inc/uno/cuno.h b/cppu/inc/uno/cuno.h
index 720371479445..cb818094e97a 100644
--- a/cppu/inc/uno/cuno.h
+++ b/cppu/inc/uno/cuno.h
@@ -2,9 +2,9 @@
*
* $RCSfile: cuno.h,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: jsc $ $Date: 2001-04-23 10:37:08 $
+ * last change: $Author: dbo $ $Date: 2001-08-21 09:17:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -69,8 +69,8 @@
#define CUNO_ERROR_CALL_FAILED (1 << 31)
#define CUNO_ERROR_EXCEPTION (1 | CUNO_ERROR_CALL_FAILED)
-#define CUNO_CALL( p ) (*p)
-#define CUNO_EXCEPTION_OCCURED( x ) (0 != ((x) & CUNO_ERROR_EXCEPTION))
+#define CUNO_CALL( interface_pointer ) (*interface_pointer)
+#define CUNO_EXCEPTION_OCCURED( return_code ) (0 != ((return_code) & CUNO_ERROR_EXCEPTION))
typedef sal_Int32 cuno_ErrorCode;