diff options
author | Daniel Boelzle <dbo@openoffice.org> | 2001-03-28 09:50:37 +0000 |
---|---|---|
committer | Daniel Boelzle <dbo@openoffice.org> | 2001-03-28 09:50:37 +0000 |
commit | d17143e6495c4161a24abd9322a957c679a51419 (patch) | |
tree | 32250c67338153cfd12ac1d42f03c47f2d8a57bb /cppu/source/uno/any.cxx | |
parent | 7fafa7166042dd51acf9b56bd8d034852d11d975 (diff) |
no use of SAL_DLLEXPORT anymore, using def file
Diffstat (limited to 'cppu/source/uno/any.cxx')
-rw-r--r-- | cppu/source/uno/any.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cppu/source/uno/any.cxx b/cppu/source/uno/any.cxx index 1318ec230b1a..b21331d8198c 100644 --- a/cppu/source/uno/any.cxx +++ b/cppu/source/uno/any.cxx @@ -2,9 +2,9 @@ * * $RCSfile: any.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: dbo $ $Date: 2001-03-09 12:10:57 $ + * last change: $Author: dbo $ $Date: 2001-03-28 10:46:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -68,7 +68,7 @@ using namespace cppu; extern "C" { //################################################################################################## -SAL_DLLEXPORT void SAL_CALL uno_type_any_assign( +void SAL_CALL uno_type_any_assign( uno_Any * pDest, void * pSource, typelib_TypeDescriptionReference * pType, uno_AcquireFunc acquire, uno_ReleaseFunc release ) @@ -85,7 +85,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_assign( } } //################################################################################################## -SAL_DLLEXPORT void SAL_CALL uno_any_assign( +void SAL_CALL uno_any_assign( uno_Any * pDest, void * pSource, typelib_TypeDescription * pTypeDescr, uno_AcquireFunc acquire, uno_ReleaseFunc release ) @@ -102,7 +102,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_assign( } } //################################################################################################## -SAL_DLLEXPORT void SAL_CALL uno_type_any_construct( +void SAL_CALL uno_type_any_construct( uno_Any * pDest, void * pSource, typelib_TypeDescriptionReference * pType, uno_AcquireFunc acquire ) @@ -118,7 +118,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_construct( } } //################################################################################################## -SAL_DLLEXPORT void SAL_CALL uno_any_construct( +void SAL_CALL uno_any_construct( uno_Any * pDest, void * pSource, typelib_TypeDescription * pTypeDescr, uno_AcquireFunc acquire ) @@ -134,7 +134,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_construct( } } //################################################################################################## -SAL_DLLEXPORT void SAL_CALL uno_type_any_constructAndConvert( +void SAL_CALL uno_type_any_constructAndConvert( uno_Any * pDest, void * pSource, typelib_TypeDescriptionReference * pType, uno_Mapping * mapping ) @@ -150,7 +150,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_constructAndConvert( } } //################################################################################################## -SAL_DLLEXPORT void SAL_CALL uno_any_constructAndConvert( +void SAL_CALL uno_any_constructAndConvert( uno_Any * pDest, void * pSource, typelib_TypeDescription * pTypeDescr, uno_Mapping * mapping ) @@ -166,7 +166,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_constructAndConvert( } } //################################################################################################## -SAL_DLLEXPORT void SAL_CALL uno_any_destruct( uno_Any * pValue, uno_ReleaseFunc release ) +void SAL_CALL uno_any_destruct( uno_Any * pValue, uno_ReleaseFunc release ) SAL_THROW_EXTERN_C() { __destructAny( pValue, release ); |