diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-07-18 11:20:15 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-07-18 11:20:15 +0000 |
commit | efb0012c3e3862fff3b5186ddfe3119f2e15ff82 (patch) | |
tree | 5daf77940da39d3d973e68f482c0dbe1800a04c2 /cppu/inc | |
parent | 9872c43b2ed0d315e6cdc8ca90cc541c7a970a8c (diff) |
INTEGRATION: CWS unomacli64 (1.11.2); FILE MERGED
2007/06/05 15:00:52 kr 1.11.2.1: #i77422# Use va_list * instead of plain type
Diffstat (limited to 'cppu/inc')
-rw-r--r-- | cppu/inc/uno/environment.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cppu/inc/uno/environment.h b/cppu/inc/uno/environment.h index b4644725aebc..dff6d7af0e03 100644 --- a/cppu/inc/uno/environment.h +++ b/cppu/inc/uno/environment.h @@ -4,9 +4,9 @@ * * $RCSfile: environment.h,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: kz $ $Date: 2007-05-09 13:34:52 $ + * last change: $Author: obo $ $Date: 2007-07-18 12:20:15 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -349,16 +349,16 @@ void SAL_CALL uno_getCurrentEnvironment(uno_Environment ** ppEnv, rtl_uString * /** Typedef for variable argument function. */ -typedef void SAL_CALL uno_EnvCallee(va_list param); +typedef void SAL_CALL uno_EnvCallee(va_list * pParam); /** Invoke the passed function in the given environment. @param pEnv the target environment @param pCallee the function to call - @param param the parameter pointer passed to the function + @param pParam the parameter pointer passed to the function @since UDK 3.2.7 */ -void SAL_CALL uno_Environment_invoke_v(uno_Environment * pEnv, uno_EnvCallee * pCallee, va_list param) +void SAL_CALL uno_Environment_invoke_v(uno_Environment * pEnv, uno_EnvCallee * pCallee, va_list * pParam) SAL_THROW_EXTERN_C(); /** Invoke the passed function in the given environment. |