diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-01-05 17:21:40 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-01-05 17:25:50 +0100 |
commit | 64ccf3ff3059f81532c88f974bad7399cddc9898 (patch) | |
tree | 64dc51fbb030f027f9dcb476e8449106172c1778 /cppu | |
parent | c662bf350f5a8f43daa38f0fbee11464604d1285 (diff) |
Include function declarations
Change-Id: Ib1ce66bf9ec71280409335c0a5022ecfe229f494
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/source/threadpool/current.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cppu/source/threadpool/current.cxx b/cppu/source/threadpool/current.cxx index 6c66320c57f8..b43de4cfa949 100644 --- a/cppu/source/threadpool/current.cxx +++ b/cppu/source/threadpool/current.cxx @@ -24,6 +24,7 @@ #include "osl/thread.h" #include "osl/mutex.hxx" +#include "uno/current_context.hxx" #include "uno/environment.hxx" #include "uno/mapping.hxx" #include "typelib/typedescription.h" @@ -182,7 +183,7 @@ IdContainer * getIdContainer() } -extern "C" CPPU_DLLPUBLIC sal_Bool SAL_CALL uno_setCurrentContext( +extern "C" sal_Bool SAL_CALL uno_setCurrentContext( void * pCurrentContext, rtl_uString * pEnvTypeName, void * pEnvContext ) SAL_THROW_EXTERN_C() @@ -230,7 +231,7 @@ extern "C" CPPU_DLLPUBLIC sal_Bool SAL_CALL uno_setCurrentContext( return sal_True; } -extern "C" CPPU_DLLPUBLIC sal_Bool SAL_CALL uno_getCurrentContext( +extern "C" sal_Bool SAL_CALL uno_getCurrentContext( void ** ppCurrentContext, rtl_uString * pEnvTypeName, void * pEnvContext ) SAL_THROW_EXTERN_C() { |