summaryrefslogtreecommitdiff
path: root/bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:38:24 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:38:24 +0000
commit96e4e6c967e4e63e7f9d020bfb3a0e55ef541674 (patch)
tree2348657240b2db0957028b636290d95de093d4d1 /bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx
parentf7137523269cffe19bb36c807a07acb18c2f40b3 (diff)
INTEGRATION: CWS warnings01 (1.2.100); FILE MERGED
2005/09/22 18:05:35 sb 1.2.100.2: RESYNC: (1.2-1.3); FILE MERGED 2005/09/09 12:37:21 sb 1.2.100.1: #i53898# Made code warning-free.
Diffstat (limited to 'bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx')
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx47
1 files changed, 33 insertions, 14 deletions
diff --git a/bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx b/bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx
index fcbdd1acd236..ea992e1685b8 100644
--- a/bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx
+++ b/bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: unointerfaceproxy.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 22:10:07 $
+ * last change: $Author: hr $ $Date: 2006-06-19 23:38:24 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -51,6 +51,26 @@ namespace bridges { namespace cpp_uno { namespace shared {
class Bridge;
+extern "C" typedef void SAL_CALL FreeUnoInterfaceProxy(
+ uno_ExtEnvironment * pEnv, void * pProxy);
+FreeUnoInterfaceProxy freeUnoInterfaceProxy;
+
+// private:
+extern "C" typedef void SAL_CALL UnoInterfaceProxyDispatch(
+ uno_Interface * pUnoI, typelib_TypeDescription const * pMemberDescr,
+ void * pReturn, void * pArgs[], uno_Any ** ppException);
+UnoInterfaceProxyDispatch unoInterfaceProxyDispatch;
+ // this function is not defined in the generic part, but instead has to be
+ // defined individually for each CPP--UNO bridge
+
+// private:
+extern "C" typedef void SAL_CALL AcquireProxy(uno_Interface *);
+AcquireProxy acquireProxy;
+
+// private:
+extern "C" typedef void SAL_CALL ReleaseProxy(uno_Interface *);
+ReleaseProxy releaseProxy;
+
/**
* A uno proxy wrapping a cpp interface.
*/
@@ -63,9 +83,6 @@ public:
typelib_InterfaceTypeDescription * pTypeDescr,
rtl::OUString const & rOId) SAL_THROW(());
- static void SAL_CALL free(uno_ExtEnvironment * pEnv, void * pProxy)
- SAL_THROW(());
-
// Interface for individual CPP--UNO bridges:
Bridge * getBridge() { return pBridge; }
@@ -82,15 +99,6 @@ private:
~UnoInterfaceProxy();
- static void SAL_CALL acquireProxy(uno_Interface * pUnoI) SAL_THROW(());
- static void SAL_CALL releaseProxy(uno_Interface * pUnoI) SAL_THROW(());
-
- // This function is not defined in the generic part, but instead has to be
- // defined individually for each CPP--UNO bridge:
- static void SAL_CALL dispatch(
- uno_Interface * pUnoI, typelib_TypeDescription const * pMemberDescr,
- void * pReturn, void * pArgs[], uno_Any ** ppException) SAL_THROW(());
-
oslInterlockedCount nRef;
Bridge * pBridge;
@@ -98,6 +106,17 @@ private:
com::sun::star::uno::XInterface * pCppI; // wrapped interface
typelib_InterfaceTypeDescription * pTypeDescr;
rtl::OUString oid;
+
+ friend void SAL_CALL freeUnoInterfaceProxy(
+ uno_ExtEnvironment * pEnv, void * pProxy);
+
+ friend void SAL_CALL unoInterfaceProxyDispatch(
+ uno_Interface * pUnoI, typelib_TypeDescription const * pMemberDescr,
+ void * pReturn, void * pArgs[], uno_Any ** ppException);
+
+ friend void SAL_CALL acquireProxy(uno_Interface * pUnoI);
+
+ friend void SAL_CALL releaseProxy(uno_Interface * pUnoI);
};
} } }