summaryrefslogtreecommitdiff
path: root/include/com/sun/star/uno/genfunc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/com/sun/star/uno/genfunc.h')
-rw-r--r--include/com/sun/star/uno/genfunc.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/com/sun/star/uno/genfunc.h b/include/com/sun/star/uno/genfunc.h
index eb1b028cce4a..f9c547421119 100644
--- a/include/com/sun/star/uno/genfunc.h
+++ b/include/com/sun/star/uno/genfunc.h
@@ -31,25 +31,23 @@ namespace star
{
namespace uno
{
-
/** Function to acquire a C++ interface.
@param pCppI C++ interface pointer
*/
-inline void SAL_CALL cpp_acquire( void * pCppI );
+inline void SAL_CALL cpp_acquire(void* pCppI);
/** Function to release a C++ interface.
@param pCppI C++ interface pointer
*/
-inline void SAL_CALL cpp_release( void * pCppI );
+inline void SAL_CALL cpp_release(void* pCppI);
/** Function to query for a C++ interface.
@param pCppI C++ interface pointer
@param pType demanded interface type
@return acquired C++ interface pointer or null
*/
-inline void * SAL_CALL cpp_queryInterface( void * pCppI, typelib_TypeDescriptionReference * pType );
-
+inline void* SAL_CALL cpp_queryInterface(void* pCppI, typelib_TypeDescriptionReference* pType);
}
}
}