summaryrefslogtreecommitdiff
path: root/cppu/inc
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-03-28 09:50:37 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-03-28 09:50:37 +0000
commitd17143e6495c4161a24abd9322a957c679a51419 (patch)
tree32250c67338153cfd12ac1d42f03c47f2d8a57bb /cppu/inc
parent7fafa7166042dd51acf9b56bd8d034852d11d975 (diff)
no use of SAL_DLLEXPORT anymore, using def file
Diffstat (limited to 'cppu/inc')
-rw-r--r--cppu/inc/typelib/typedescription.h66
-rw-r--r--cppu/inc/uno/any2.h18
-rw-r--r--cppu/inc/uno/current_context.h6
-rw-r--r--cppu/inc/uno/data.h28
-rw-r--r--cppu/inc/uno/environment.h14
-rw-r--r--cppu/inc/uno/mapping.h16
-rw-r--r--cppu/inc/uno/sequence2.h20
-rw-r--r--cppu/inc/uno/threadpool.h22
8 files changed, 95 insertions, 95 deletions
diff --git a/cppu/inc/typelib/typedescription.h b/cppu/inc/typelib/typedescription.h
index 3f548b28372d..0eb1b88e653e 100644
--- a/cppu/inc/typelib/typedescription.h
+++ b/cppu/inc/typelib/typedescription.h
@@ -2,9 +2,9 @@
*
* $RCSfile: typedescription.h,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: dbo $ $Date: 2001-03-09 12:10:55 $
+ * last change: $Author: dbo $ $Date: 2001-03-28 10:46:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -494,7 +494,7 @@ typedef struct _typelib_Union_Init
@param nMembers number of union members
@param pMembers init members
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_newUnion(
+void SAL_CALL typelib_typedescription_newUnion(
typelib_TypeDescription ** ppRet,
rtl_uString * pTypeName,
typelib_TypeDescriptionReference * pDiscriminantTypeRef,
@@ -513,7 +513,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_newUnion(
@param ppEnumNames names of enum values
@param pEnumValues enum values
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_newEnum(
+void SAL_CALL typelib_typedescription_newEnum(
typelib_TypeDescription ** ppRet,
rtl_uString * pTypeName,
sal_Int32 nDefaultValue,
@@ -532,7 +532,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_newEnum(
@param nMembers number of members if struct, exception
@param pMember array of members if struct, exception
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_new(
+void SAL_CALL typelib_typedescription_new(
typelib_TypeDescription ** ppRet,
typelib_TypeClass eTypeClass,
rtl_uString * pTypeName,
@@ -554,7 +554,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_new(
@param nMembers number of members
@param ppMembers members; attributes or methods
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_newInterface(
+void SAL_CALL typelib_typedescription_newInterface(
typelib_InterfaceTypeDescription ** ppRet,
rtl_uString * pTypeName,
sal_uInt32 nUik1, sal_uInt16 nUik2, sal_uInt16 nUik3, sal_uInt32 nUik4, sal_uInt32 nUik5,
@@ -576,7 +576,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_newInterface(
@param nExceptions number of exceptions
@param ppExceptionNames type names of exceptions
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_newInterfaceMethod(
+void SAL_CALL typelib_typedescription_newInterfaceMethod(
typelib_InterfaceMethodTypeDescription ** ppRet,
sal_Int32 nAbsolutePosition,
sal_Bool bOneWay,
@@ -597,7 +597,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_newInterfaceMethod(
@param eAttributeTypeClass type class of attribute type
@param pAttributeTypeName type name of attribute type
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_newInterfaceAttribute(
+void SAL_CALL typelib_typedescription_newInterfaceAttribute(
typelib_InterfaceAttributeTypeDescription ** ppRet,
sal_Int32 nAbsolutePosition,
rtl_uString * pAttributeName,
@@ -610,7 +610,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_newInterfaceAttribute(
<br>
@param pDesc type description
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_acquire(
+void SAL_CALL typelib_typedescription_acquire(
typelib_TypeDescription * pDesc )
SAL_THROW_EXTERN_C();
@@ -619,7 +619,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_acquire(
<br>
@param pDesc type description
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_release(
+void SAL_CALL typelib_typedescription_release(
typelib_TypeDescription * pDesc )
SAL_THROW_EXTERN_C();
@@ -628,7 +628,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_release(
via the callback chain.
@param ppNewDescription inout description to be registered;
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_register(
+void SAL_CALL typelib_typedescription_register(
typelib_TypeDescription ** ppNewDescription )
SAL_THROW_EXTERN_C();
@@ -638,7 +638,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_register(
@param p2 another type description
@return true, if type descriptions are equal
*/
-SAL_DLLEXPORT sal_Bool SAL_CALL typelib_typedescription_equals(
+sal_Bool SAL_CALL typelib_typedescription_equals(
const typelib_TypeDescription * p1, const typelib_TypeDescription * p2 )
SAL_THROW_EXTERN_C();
@@ -647,7 +647,7 @@ SAL_DLLEXPORT sal_Bool SAL_CALL typelib_typedescription_equals(
@param ppRet inout type description; *ppRet is 0, if type description was not found
@param pName name demanded type description
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_getByName(
+void SAL_CALL typelib_typedescription_getByName(
typelib_TypeDescription ** ppRet, rtl_uString * pName )
SAL_THROW_EXTERN_C();
@@ -655,7 +655,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_getByName(
<br>
@param nNewSize new size of cache
*/
-SAL_DLLEXPORT void SAL_CALL typelib_setCacheSize(
+void SAL_CALL typelib_setCacheSize(
sal_Int32 nNewSize )
SAL_THROW_EXTERN_C();
@@ -674,7 +674,7 @@ typedef void (SAL_CALL * typelib_typedescription_Callback)(
@param pContext callback context
@param pCallback callback function
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_registerCallback(
+void SAL_CALL typelib_typedescription_registerCallback(
void * pContext, typelib_typedescription_Callback pCallback )
SAL_THROW_EXTERN_C();
@@ -683,7 +683,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_registerCallback(
@param pContext callback context
@param pCallback registered callback function
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescription_revokeCallback(
+void SAL_CALL typelib_typedescription_revokeCallback(
void * pContext, typelib_typedescription_Callback pCallback )
SAL_THROW_EXTERN_C();
@@ -742,7 +742,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescription_revokeCallback(
@param eTypeClass type class of type
@param pTypeName name of type
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_new(
+void SAL_CALL typelib_typedescriptionreference_new(
typelib_TypeDescriptionReference ** ppTDR,
typelib_TypeClass eTypeClass,
rtl_uString * pTypeName )
@@ -756,7 +756,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_new(
@param eTypeClass type class of type
@param pTypeName ascii name of type
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_newByAsciiName(
+void SAL_CALL typelib_typedescriptionreference_newByAsciiName(
typelib_TypeDescriptionReference ** ppTDR,
typelib_TypeClass eTypeClass,
const sal_Char * pTypeName )
@@ -766,7 +766,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_newByAsciiName(
<br>
@param pRef type description reference
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_acquire(
+void SAL_CALL typelib_typedescriptionreference_acquire(
typelib_TypeDescriptionReference * pRef )
SAL_THROW_EXTERN_C();
@@ -775,7 +775,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_acquire(
<br>
@param pRef type description reference
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_release(
+void SAL_CALL typelib_typedescriptionreference_release(
typelib_TypeDescriptionReference * pRef )
SAL_THROW_EXTERN_C();
@@ -784,7 +784,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_release(
<br>
@param ppRet inout type description
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_getDescription(
+void SAL_CALL typelib_typedescriptionreference_getDescription(
typelib_TypeDescription ** ppRet, typelib_TypeDescriptionReference * pRef )
SAL_THROW_EXTERN_C();
@@ -794,7 +794,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_getDescription(
@param p2 another type description reference
@return true, if type description references are equal
*/
-SAL_DLLEXPORT sal_Bool SAL_CALL typelib_typedescriptionreference_equals(
+sal_Bool SAL_CALL typelib_typedescriptionreference_equals(
const typelib_TypeDescriptionReference * p1, const typelib_TypeDescriptionReference * p2 )
SAL_THROW_EXTERN_C();
@@ -803,7 +803,7 @@ SAL_DLLEXPORT sal_Bool SAL_CALL typelib_typedescriptionreference_equals(
@param ppDest destination type
@param pSource source type
*/
-SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_assign(
+void SAL_CALL typelib_typedescriptionreference_assign(
typelib_TypeDescriptionReference ** ppDest,
typelib_TypeDescriptionReference * pSource )
SAL_THROW_EXTERN_C();
@@ -815,7 +815,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_typedescriptionreference_assign(
@param pAssignable type description of value to be assigned
@param pFrom type description of value
*/
-SAL_DLLEXPORT sal_Bool SAL_CALL typelib_typedescription_isAssignableFrom(
+sal_Bool SAL_CALL typelib_typedescription_isAssignableFrom(
typelib_TypeDescription * pAssignable,
typelib_TypeDescription * pFrom )
SAL_THROW_EXTERN_C();
@@ -827,7 +827,7 @@ SAL_DLLEXPORT sal_Bool SAL_CALL typelib_typedescription_isAssignableFrom(
@param pAssignable type of value to be assigned
@param pFrom type of value
*/
-SAL_DLLEXPORT sal_Bool SAL_CALL typelib_typedescriptionreference_isAssignableFrom(
+sal_Bool SAL_CALL typelib_typedescriptionreference_isAssignableFrom(
typelib_TypeDescriptionReference * pAssignable,
typelib_TypeDescriptionReference * pFrom )
SAL_THROW_EXTERN_C();
@@ -842,7 +842,7 @@ SAL_DLLEXPORT sal_Bool SAL_CALL typelib_typedescriptionreference_isAssignableFro
@param eTypeClass type class of basic type
@return pointer to type reference pointer
*/
-SAL_DLLEXPORT typelib_TypeDescriptionReference ** SAL_CALL typelib_static_type_getByTypeClass(
+typelib_TypeDescriptionReference ** SAL_CALL typelib_static_type_getByTypeClass(
typelib_TypeClass eTypeClass )
SAL_THROW_EXTERN_C();
@@ -853,7 +853,7 @@ SAL_DLLEXPORT typelib_TypeDescriptionReference ** SAL_CALL typelib_static_type_g
@param eTypeClass type class of type
@param pTypeName ascii name of type
*/
-SAL_DLLEXPORT void SAL_CALL typelib_static_type_init(
+void SAL_CALL typelib_static_type_init(
typelib_TypeDescriptionReference ** ppRef,
typelib_TypeClass eTypeClass, const sal_Char * pTypeName )
SAL_THROW_EXTERN_C();
@@ -864,7 +864,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_static_type_init(
@param ppRef pointer to type reference pointer
@param pElementType element type of sequence
*/
-SAL_DLLEXPORT void SAL_CALL typelib_static_sequence_type_init(
+void SAL_CALL typelib_static_sequence_type_init(
typelib_TypeDescriptionReference ** ppRef,
typelib_TypeDescriptionReference * pElementType )
SAL_THROW_EXTERN_C();
@@ -879,7 +879,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_static_sequence_type_init(
@param nMembers number of members
@param ppMembers member types
*/
-SAL_DLLEXPORT void SAL_CALL typelib_static_compound_type_init(
+void SAL_CALL typelib_static_compound_type_init(
typelib_TypeDescriptionReference ** ppRef,
typelib_TypeClass eTypeClass, const sal_Char * pTypeName,
typelib_TypeDescriptionReference * pBaseType,
@@ -893,7 +893,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_static_compound_type_init(
@param pTypeName name of interface
@param pBaseType base type
*/
-SAL_DLLEXPORT void SAL_CALL typelib_static_interface_type_init(
+void SAL_CALL typelib_static_interface_type_init(
typelib_TypeDescriptionReference ** ppRef,
const sal_Char * pTypeName,
typelib_TypeDescriptionReference * pBaseType )
@@ -906,7 +906,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_static_interface_type_init(
@param pTypeName name of enum
@param nDefaultEnumValue default enum value
*/
-SAL_DLLEXPORT void SAL_CALL typelib_static_enum_type_init(
+void SAL_CALL typelib_static_enum_type_init(
typelib_TypeDescriptionReference ** ppRef,
const sal_Char * pTypeName,
sal_Int32 nDefaultValue )
@@ -926,7 +926,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_static_enum_type_init(
@param pDiscriminants member discriminants
@param pMemberTypes member types
*/
-SAL_DLLEXPORT void SAL_CALL typelib_static_union_type_init(
+void SAL_CALL typelib_static_union_type_init(
typelib_TypeDescriptionReference ** ppRef,
const sal_Char * pTypeName,
typelib_TypeDescriptionReference * pDiscriminantType,
@@ -945,7 +945,7 @@ SAL_DLLEXPORT void SAL_CALL typelib_static_union_type_init(
@param ppTypeDescr [inout] type description to be completed (may be exchanged!)
@return true, if type description is complete
*/
-SAL_DLLEXPORT sal_Bool SAL_CALL typelib_typedescription_complete(
+sal_Bool SAL_CALL typelib_typedescription_complete(
typelib_TypeDescription ** ppTypeDescr )
SAL_THROW_EXTERN_C();
diff --git a/cppu/inc/uno/any2.h b/cppu/inc/uno/any2.h
index e895eeeb0289..12f959759912 100644
--- a/cppu/inc/uno/any2.h
+++ b/cppu/inc/uno/any2.h
@@ -2,9 +2,9 @@
*
* $RCSfile: any2.h,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dbo $ $Date: 2001-03-09 12:10:56 $
+ * last change: $Author: dbo $ $Date: 2001-03-28 10:46:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -109,7 +109,7 @@ typedef struct _uno_Any
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
@param release function called each time an interface needs to be released; defaults (0) to uno
*/
-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 )
@@ -123,7 +123,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_assign(
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
@param release function called each time an interface needs to be released; defaults (0) to uno
*/
-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 )
@@ -137,7 +137,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_assign(
@param pTypeDescr type description of value; defaults (0) to void
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
*/
-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 )
@@ -150,7 +150,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_construct(
@param pType type of value; defaults (0) to void
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
*/
-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 )
@@ -163,7 +163,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_construct(
@param pTypeDescr type description of value; defaults (0) to void
@param mapping mapping to convert/ map interfaces
*/
-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 )
@@ -175,7 +175,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_constructAndConvert(
@param pType type of value; defaults (0) to void
@param mapping mapping to convert/ map interfaces
*/
-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 )
@@ -186,7 +186,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_constructAndConvert(
@param pValue pointer to any
@param release function called each time an interface needs to be released. defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_any_destruct(
+void SAL_CALL uno_any_destruct(
uno_Any * pValue, uno_ReleaseFunc release )
SAL_THROW_EXTERN_C();
diff --git a/cppu/inc/uno/current_context.h b/cppu/inc/uno/current_context.h
index 653e59a4a090..c540544d3378 100644
--- a/cppu/inc/uno/current_context.h
+++ b/cppu/inc/uno/current_context.h
@@ -2,9 +2,9 @@
*
* $RCSfile: current_context.h,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: dbo $ $Date: 2001-03-09 12:10:56 $
+ * last change: $Author: dbo $ $Date: 2001-03-28 10:46:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -76,7 +76,7 @@ extern "C"
@param pEnvTypeName type name of returned interface's environment
@param pEnvContext context of returned interface's environment (commonly 0)
*/
-SAL_DLLEXPORT void SAL_CALL uno_getCurrentContext(
+void SAL_CALL uno_getCurrentContext(
void ** ppCurrentContext,
rtl_uString * pEnvTypeName, void * pEnvContext )
SAL_THROW_EXTERN_C();
diff --git a/cppu/inc/uno/data.h b/cppu/inc/uno/data.h
index 838a7b59b1c3..6a7c0da5ba07 100644
--- a/cppu/inc/uno/data.h
+++ b/cppu/inc/uno/data.h
@@ -2,9 +2,9 @@
*
* $RCSfile: data.h,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dbo $ $Date: 2001-03-09 12:10:56 $
+ * last change: $Author: dbo $ $Date: 2001-03-28 10:46:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -107,7 +107,7 @@ typedef void (SAL_CALL * uno_ReleaseFunc)(
@param release function to release queried interfaces; defaults (0) to uno
@return true if values are equal
*/
-SAL_DLLEXPORT sal_Bool SAL_CALL uno_equalData(
+sal_Bool SAL_CALL uno_equalData(
void * pVal1, typelib_TypeDescription * pVal1TypeDescr,
void * pVal2, typelib_TypeDescription * pVal2TypeDescr,
uno_QueryInterfaceFunc queryInterface, uno_ReleaseFunc release )
@@ -123,7 +123,7 @@ SAL_DLLEXPORT sal_Bool SAL_CALL uno_equalData(
@param release function to release queried interfaces; defaults (0) to uno
@return true if values are equal
*/
-SAL_DLLEXPORT sal_Bool SAL_CALL uno_type_equalData(
+sal_Bool SAL_CALL uno_type_equalData(
void * pVal1, typelib_TypeDescriptionReference * pVal1Type,
void * pVal2, typelib_TypeDescriptionReference * pVal2Type,
uno_QueryInterfaceFunc queryInterface, uno_ReleaseFunc release )
@@ -137,7 +137,7 @@ SAL_DLLEXPORT sal_Bool SAL_CALL uno_type_equalData(
@param pTypeDescr type description of source
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_copyData(
+void SAL_CALL uno_copyData(
void * pDest, void * pSource,
typelib_TypeDescription * pTypeDescr, uno_AcquireFunc acquire )
SAL_THROW_EXTERN_C();
@@ -149,7 +149,7 @@ SAL_DLLEXPORT void SAL_CALL uno_copyData(
@param pType type of source
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_type_copyData(
+void SAL_CALL uno_type_copyData(
void * pDest, void * pSource,
typelib_TypeDescriptionReference * pType, uno_AcquireFunc acquire )
SAL_THROW_EXTERN_C();
@@ -163,7 +163,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_copyData(
@param pTypeDescr type description of source
@param mapping mapping to convert/ map interfaces
*/
-SAL_DLLEXPORT void SAL_CALL uno_copyAndConvertData(
+void SAL_CALL uno_copyAndConvertData(
void * pDest, void * pSource,
typelib_TypeDescription * pTypeDescr, uno_Mapping * mapping )
SAL_THROW_EXTERN_C();
@@ -176,7 +176,7 @@ SAL_DLLEXPORT void SAL_CALL uno_copyAndConvertData(
@param pType type of source
@param mapping mapping to convert/ map interfaces
*/
-SAL_DLLEXPORT void SAL_CALL uno_type_copyAndConvertData(
+void SAL_CALL uno_type_copyAndConvertData(
void * pDest, void * pSource,
typelib_TypeDescriptionReference * pType, uno_Mapping * mapping )
SAL_THROW_EXTERN_C();
@@ -187,7 +187,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_copyAndConvertData(
@param pTypeDescr type description of value
@param release function called each time an interface pointer needs to be released; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_destructData(
+void SAL_CALL uno_destructData(
void * pValue, typelib_TypeDescription * pTypeDescr, uno_ReleaseFunc release )
SAL_THROW_EXTERN_C();
/** Destructs a given value; does <b>not</b> free its memory!
@@ -196,7 +196,7 @@ SAL_DLLEXPORT void SAL_CALL uno_destructData(
@param pType type of value
@param release function called each time an interface pointer needs to be released; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_type_destructData(
+void SAL_CALL uno_type_destructData(
void * pValue, typelib_TypeDescriptionReference * pType, uno_ReleaseFunc release )
SAL_THROW_EXTERN_C();
@@ -206,7 +206,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_destructData(
@param pMem pointer to memory of value to be constructed
@param pTypeDescr type description of value to be constructed
*/
-SAL_DLLEXPORT void SAL_CALL uno_constructData(
+void SAL_CALL uno_constructData(
void * pMem, typelib_TypeDescription * pTypeDescr )
SAL_THROW_EXTERN_C();
/** Default constructs a value. All simple types are set to 0, enums are set to their default
@@ -215,7 +215,7 @@ SAL_DLLEXPORT void SAL_CALL uno_constructData(
@param pMem pointer to memory of value to be constructed
@param pType type of value to be constructed
*/
-SAL_DLLEXPORT void SAL_CALL uno_type_constructData(
+void SAL_CALL uno_type_constructData(
void * pMem, typelib_TypeDescriptionReference * pType )
SAL_THROW_EXTERN_C();
@@ -232,7 +232,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_constructData(
@param release function called each time an interface needs to be released; defaults (0) to uno
@return true if destination has been successfully assigned
*/
-SAL_DLLEXPORT sal_Bool SAL_CALL uno_assignData(
+sal_Bool SAL_CALL uno_assignData(
void * pDest, typelib_TypeDescription * pDestTypeDescr,
void * pSource, typelib_TypeDescription * pSourceTypeDescr,
uno_QueryInterfaceFunc queryInterface, uno_AcquireFunc acquire, uno_ReleaseFunc release )
@@ -250,7 +250,7 @@ SAL_DLLEXPORT sal_Bool SAL_CALL uno_assignData(
@param release function called each time an interface needs to be released; defaults (0) to uno
@return true if destination has been successfully assigned
*/
-SAL_DLLEXPORT sal_Bool SAL_CALL uno_type_assignData(
+sal_Bool SAL_CALL uno_type_assignData(
void * pDest, typelib_TypeDescriptionReference * pDestType,
void * pSource, typelib_TypeDescriptionReference * pSourceType,
uno_QueryInterfaceFunc queryInterface, uno_AcquireFunc acquire, uno_ReleaseFunc release )
diff --git a/cppu/inc/uno/environment.h b/cppu/inc/uno/environment.h
index 36d156895c67..8a073a5b8419 100644
--- a/cppu/inc/uno/environment.h
+++ b/cppu/inc/uno/environment.h
@@ -2,9 +2,9 @@
*
* $RCSfile: environment.h,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dbo $ $Date: 2001-03-09 12:10:56 $
+ * last change: $Author: dbo $ $Date: 2001-03-28 10:46:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -299,7 +299,7 @@ typedef void (SAL_CALL * uno_initEnvironmentFunc)( uno_Environment * pEnv );
@param pEnvTypeName type name of environment
@param pContext some context pointer (e.g., to distinguish java vm; set 0 if not needed)
*/
-SAL_DLLEXPORT void SAL_CALL uno_getEnvironment(
+void SAL_CALL uno_getEnvironment(
uno_Environment ** ppEnv, rtl_uString * pEnvTypeName, void * pContext )
SAL_THROW_EXTERN_C();
@@ -311,7 +311,7 @@ SAL_DLLEXPORT void SAL_CALL uno_getEnvironment(
@param memAlloc function for allocating memory that is passed back
@param pEnvTypeName type name of environments; 0 defaults to all
*/
-SAL_DLLEXPORT void SAL_CALL uno_getRegisteredEnvironments(
+void SAL_CALL uno_getRegisteredEnvironments(
uno_Environment *** pppEnvs, sal_Int32 * pnLen, uno_memAlloc memAlloc,
rtl_uString * pEnvTypeName )
SAL_THROW_EXTERN_C();
@@ -323,7 +323,7 @@ SAL_DLLEXPORT void SAL_CALL uno_getRegisteredEnvironments(
@param pEnvTypeName name of environment
@param pContext context pointer (e.g., to distinguish java vm); set 0 if not needed
*/
-SAL_DLLEXPORT void SAL_CALL uno_createEnvironment(
+void SAL_CALL uno_createEnvironment(
uno_Environment ** ppEnv, rtl_uString * pEnvTypeName, void * pContext )
SAL_THROW_EXTERN_C();
@@ -333,7 +333,7 @@ SAL_DLLEXPORT void SAL_CALL uno_createEnvironment(
@param pEnv environment to be dumped
@param pFilter if not null, filters output
*/
-SAL_DLLEXPORT void SAL_CALL uno_dumpEnvironment(
+void SAL_CALL uno_dumpEnvironment(
void * stream, uno_Environment * pEnv, const sal_Char * pFilter )
SAL_THROW_EXTERN_C();
/** Dumps out environment information, i.e. registered interfaces.
@@ -342,7 +342,7 @@ SAL_DLLEXPORT void SAL_CALL uno_dumpEnvironment(
@param pEnvTypeName type name of environment to be dumped
@param pFilter if not null, filters output
*/
-SAL_DLLEXPORT void SAL_CALL uno_dumpEnvironmentByName(
+void SAL_CALL uno_dumpEnvironmentByName(
void * stream, rtl_uString * pEnvTypeName, const sal_Char * pFilter )
SAL_THROW_EXTERN_C();
diff --git a/cppu/inc/uno/mapping.h b/cppu/inc/uno/mapping.h
index 9220980a881f..ec4bd4a2c026 100644
--- a/cppu/inc/uno/mapping.h
+++ b/cppu/inc/uno/mapping.h
@@ -2,9 +2,9 @@
*
* $RCSfile: mapping.h,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dbo $ $Date: 2001-03-09 12:10:56 $
+ * last change: $Author: dbo $ $Date: 2001-03-28 10:46:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -134,7 +134,7 @@ typedef struct _uno_Mapping
in this language environment)
@param pAddPurpose additional purpose of mapping (e.g., protocolling); defaults to 0 (none)
*/
-SAL_DLLEXPORT void SAL_CALL uno_getMapping(
+void SAL_CALL uno_getMapping(
uno_Mapping ** ppMapping,
uno_Environment * pFrom,
uno_Environment * pTo,
@@ -158,7 +158,7 @@ typedef void (SAL_CALL * uno_getMappingFunc)(
<br>
@param pCallback callback function
*/
-SAL_DLLEXPORT void SAL_CALL uno_registerMappingCallback(
+void SAL_CALL uno_registerMappingCallback(
uno_getMappingFunc pCallback )
SAL_THROW_EXTERN_C();
@@ -166,7 +166,7 @@ SAL_DLLEXPORT void SAL_CALL uno_registerMappingCallback(
<br>
@param pCallback callback function
*/
-SAL_DLLEXPORT void SAL_CALL uno_revokeMappingCallback(
+void SAL_CALL uno_revokeMappingCallback(
uno_getMappingFunc pCallback )
SAL_THROW_EXTERN_C();
@@ -187,7 +187,7 @@ typedef void (SAL_CALL * uno_freeMappingFunc)( uno_Mapping * pMapping );
@param pTo destination environment
@param pAddPurpose additional purpose string; defaults to 0
*/
-SAL_DLLEXPORT void SAL_CALL uno_registerMapping(
+void SAL_CALL uno_registerMapping(
uno_Mapping ** ppMapping, uno_freeMappingFunc freeMapping,
uno_Environment * pFrom, uno_Environment * pTo, rtl_uString * pAddPurpose )
SAL_THROW_EXTERN_C();
@@ -197,7 +197,7 @@ SAL_DLLEXPORT void SAL_CALL uno_registerMapping(
<br>
@param pMapping mapping to be revoked
*/
-SAL_DLLEXPORT void SAL_CALL uno_revokeMapping(
+void SAL_CALL uno_revokeMapping(
uno_Mapping * pMapping )
SAL_THROW_EXTERN_C();
@@ -211,7 +211,7 @@ SAL_DLLEXPORT void SAL_CALL uno_revokeMapping(
in this language environment)
@param pAddPurpose additional purpose of mapping (e.g., protocolling); defaults to 0 (none)
*/
-SAL_DLLEXPORT void SAL_CALL uno_getMappingByName(
+void SAL_CALL uno_getMappingByName(
uno_Mapping ** ppMapping,
rtl_uString * pFrom,
rtl_uString * pTo,
diff --git a/cppu/inc/uno/sequence2.h b/cppu/inc/uno/sequence2.h
index 81788d8cec1c..01ffbd3509bf 100644
--- a/cppu/inc/uno/sequence2.h
+++ b/cppu/inc/uno/sequence2.h
@@ -2,9 +2,9 @@
*
* $RCSfile: sequence2.h,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dbo $ $Date: 2001-03-09 12:10:56 $
+ * last change: $Author: dbo $ $Date: 2001-03-28 10:46:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -82,7 +82,7 @@ typedef sal_Sequence uno_Sequence;
@param pTypeDescr type description of the <B>sequence</B> and <b>not</b> of an element
@param release function called each time an interface needs to be released; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_sequence_assign(
+void SAL_CALL uno_sequence_assign(
uno_Sequence ** ppDest,
uno_Sequence * pSource,
typelib_TypeDescription * pTypeDescr,
@@ -95,7 +95,7 @@ SAL_DLLEXPORT void SAL_CALL uno_sequence_assign(
@param pType type of the <B>sequence</B> and <b>not</b> of an element
@param release function called each time an interface needs to be released; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_type_sequence_assign(
+void SAL_CALL uno_type_sequence_assign(
uno_Sequence ** ppDest,
uno_Sequence * pSource,
typelib_TypeDescriptionReference * pType,
@@ -110,7 +110,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_sequence_assign(
@param len number of elements
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_sequence_construct(
+void SAL_CALL uno_sequence_construct(
uno_Sequence ** ppSequence,
typelib_TypeDescription * pTypeDescr,
void * pElements, sal_Int32 len,
@@ -124,7 +124,7 @@ SAL_DLLEXPORT void SAL_CALL uno_sequence_construct(
@param len number of elements
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_type_sequence_construct(
+void SAL_CALL uno_type_sequence_construct(
uno_Sequence ** ppSequence,
typelib_TypeDescriptionReference * pType,
void * pElements, sal_Int32 len,
@@ -139,7 +139,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_sequence_construct(
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
@param release function called each time an interface needs to be released; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_sequence_reference2One(
+void SAL_CALL uno_sequence_reference2One(
uno_Sequence ** ppSequence,
typelib_TypeDescription * pTypeDescr,
uno_AcquireFunc acquire,
@@ -153,7 +153,7 @@ SAL_DLLEXPORT void SAL_CALL uno_sequence_reference2One(
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
@param release function called each time an interface needs to be released; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_type_sequence_reference2One(
+void SAL_CALL uno_type_sequence_reference2One(
uno_Sequence ** ppSequence,
typelib_TypeDescriptionReference * pType,
uno_AcquireFunc acquire,
@@ -169,7 +169,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_sequence_reference2One(
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
@param release function called each time an interface needs to be released; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_sequence_realloc(
+void SAL_CALL uno_sequence_realloc(
uno_Sequence ** ppSequence,
typelib_TypeDescription * pTypeDescr,
sal_Int32 nSize,
@@ -185,7 +185,7 @@ SAL_DLLEXPORT void SAL_CALL uno_sequence_realloc(
@param acquire function called each time an interface needs to be acquired; defaults (0) to uno
@param release function called each time an interface needs to be released; defaults (0) to uno
*/
-SAL_DLLEXPORT void SAL_CALL uno_type_sequence_realloc(
+void SAL_CALL uno_type_sequence_realloc(
uno_Sequence ** ppSequence,
typelib_TypeDescriptionReference * pType,
sal_Int32 nSize,
diff --git a/cppu/inc/uno/threadpool.h b/cppu/inc/uno/threadpool.h
index 3558ddb289e4..82431a4d376a 100644
--- a/cppu/inc/uno/threadpool.h
+++ b/cppu/inc/uno/threadpool.h
@@ -2,9 +2,9 @@
*
* $RCSfile: threadpool.h,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dbo $ $Date: 2001-03-09 12:10:56 $
+ * last change: $Author: dbo $ $Date: 2001-03-28 10:46:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,7 +81,7 @@ extern "C" {
* false, when the thread has already an identifier. The identifier was not
* altered. ( This is in general a bug ). <br>
**/
-SAL_DLLEXPORT sal_Bool SAL_CALL uno_bindIdToCurrentThread( sal_Sequence *pThreadId )
+sal_Bool SAL_CALL uno_bindIdToCurrentThread( sal_Sequence *pThreadId )
SAL_THROW_EXTERN_C();
@@ -94,7 +94,7 @@ SAL_DLLEXPORT sal_Bool SAL_CALL uno_bindIdToCurrentThread( sal_Sequence *pThread
*
* @param ppThreadId [out] Contains the (acquired) ThreadId.
**/
-SAL_DLLEXPORT void SAL_CALL uno_getIdOfCurrentThread( sal_Sequence **ppThreadId )
+void SAL_CALL uno_getIdOfCurrentThread( sal_Sequence **ppThreadId )
SAL_THROW_EXTERN_C();
@@ -102,7 +102,7 @@ SAL_DLLEXPORT void SAL_CALL uno_getIdOfCurrentThread( sal_Sequence **ppThreadId
* If the internal refcount drops to zero, the association betwen threadId and
* thread is broken.
**/
-SAL_DLLEXPORT void SAL_CALL uno_releaseIdFromCurrentThread()
+void SAL_CALL uno_releaseIdFromCurrentThread()
SAL_THROW_EXTERN_C();
@@ -120,7 +120,7 @@ struct uno_threadpool_Handle;
* local process. The pointer to the bridge object should be used.
* @see uno_threadpool_disposeThreads
***/
-SAL_DLLEXPORT struct uno_threadpool_Handle * SAL_CALL
+struct uno_threadpool_Handle * SAL_CALL
uno_threadpool_createHandle( sal_Int64 nDisposeId ) SAL_THROW_EXTERN_C();
/**
@@ -132,7 +132,7 @@ uno_threadpool_createHandle( sal_Int64 nDisposeId ) SAL_THROW_EXTERN_C();
* If the threads for this bridge were disposed,
* *ppThreadSpecificData is null.
**/
-SAL_DLLEXPORT void SAL_CALL
+void SAL_CALL
uno_threadpool_enter( struct uno_threadpool_Handle * pHandle , void **ppThreadSpecificData )
SAL_THROW_EXTERN_C();
@@ -159,7 +159,7 @@ uno_threadpool_enter( struct uno_threadpool_Handle * pHandle , void **ppThreadSp
* @param bIsOneway True, if the request is asynchrons. False, if it is synchronous
*
**/
-SAL_DLLEXPORT void SAL_CALL
+void SAL_CALL
uno_threadpool_putRequest( sal_Sequence *pThreadId,
void *pThreadSpecificData,
void ( SAL_CALL * doRequest ) ( void *pThreadSpecificData ),
@@ -172,7 +172,7 @@ uno_threadpool_putRequest( sal_Sequence *pThreadId,
*
* @param pThreadSpecificData The pointer, that is returned by uno_threadpool_enter.
**/
-SAL_DLLEXPORT void SAL_CALL
+void SAL_CALL
uno_threadpool_putReply( sal_Sequence *pThreadId, void *pThreadSpecificData ) SAL_THROW_EXTERN_C();
@@ -190,7 +190,7 @@ uno_threadpool_putReply( sal_Sequence *pThreadId, void *pThreadSpecificData ) SA
* When disposing of the bridge has finished, the bridge MUST call
* uno_threadpool_stopDisposeThreads.
**/
-SAL_DLLEXPORT void SAL_CALL
+void SAL_CALL
uno_threadpool_disposeThreads( sal_Int64 nDisposeId ) SAL_THROW_EXTERN_C();
@@ -203,7 +203,7 @@ uno_threadpool_disposeThreads( sal_Int64 nDisposeId ) SAL_THROW_EXTERN_C();
* @param nDisposeId Identifies the caller of uno_threadpool_createTicket
* @see uno_threadpool_disposeThreads
**/
-SAL_DLLEXPORT void SAL_CALL
+void SAL_CALL
uno_threadpool_stopDisposeThreads( sal_Int64 nDisposeId ) SAL_THROW_EXTERN_C();
#ifdef __cplusplus