summaryrefslogtreecommitdiff
path: root/cppu/inc/uno/Enterable.h
diff options
context:
space:
mode:
Diffstat (limited to 'cppu/inc/uno/Enterable.h')
-rw-r--r--cppu/inc/uno/Enterable.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/cppu/inc/uno/Enterable.h b/cppu/inc/uno/Enterable.h
index a769ede987f2..a4258c092d75 100644
--- a/cppu/inc/uno/Enterable.h
+++ b/cppu/inc/uno/Enterable.h
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -40,7 +40,7 @@ extern "C"
/** Generic function type declaration for entering an Environment.
(http://wiki.services.openoffice.org/wiki/Uno/Binary/Spec/Environment_Stack)
-
+
@param context
@since UDK 3.2.7
*/
@@ -49,7 +49,7 @@ typedef void uno_Enterable_enter (void * context);
/** Generic function type declaration for levaing an Environment.
(http://wiki.services.openoffice.org/wiki/Uno/Binary/Spec/Environment_Stack)
-
+
@param context
@since UDK 3.2.7
*/
@@ -58,7 +58,7 @@ typedef void uno_Enterable_leave (void * context);
/** Generic function type declaration for calling into an Environment.
(http://wiki.services.openoffice.org/wiki/Uno/Binary/Spec/Environment_Stack)
-
+
@param context
@param pCallee the function to be called
@param pParam the parameter pointer to be passed to the function
@@ -69,7 +69,7 @@ typedef void uno_Enterable_callInto_v(void * context, uno_EnvCallee * pCallee, v
/** Generic function type declaration for calling out of an Environment.
(http://wiki.services.openoffice.org/wiki/Uno/Binary/Spec/Environment_Stack)
-
+
@param context
@param pCallee the function to be called
@param pParam the parameter pointer to be passed to the function
@@ -81,7 +81,7 @@ typedef void uno_Enterable_callOut_v (void * context, uno_EnvCallee * pCallee, v
/** Generic function type declaration for checking if calling on managed object is
valid.
(http://wiki.services.openoffice.org/wiki/Uno/Binary/Spec/Environment_Stack)
-
+
@param context
@param ppReason the reason, in case calling is not valid
@return 0 == calling is not valid, 1 == calling is valid
@@ -95,14 +95,14 @@ typedef int uno_Enterable_isValid_v (void * context, rtl_uString ** ppReason);
@since UDK 3.2.7
*/
-typedef struct
+typedef struct
{
uno_Enterable_enter * m_enter;
uno_Enterable_leave * m_leave;
uno_Enterable_callInto_v * m_callInto_v;
uno_Enterable_callOut_v * m_callOut_v;
uno_Enterable_isValid_v * m_isValid;
-}
+}
uno_Enterable;