diff options
Diffstat (limited to 'odk/examples/cpp/remoteclient/remoteclient.cxx')
-rw-r--r-- | odk/examples/cpp/remoteclient/remoteclient.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/odk/examples/cpp/remoteclient/remoteclient.cxx b/odk/examples/cpp/remoteclient/remoteclient.cxx index 2b7c4b3251d4..373efaee8a24 100644 --- a/odk/examples/cpp/remoteclient/remoteclient.cxx +++ b/odk/examples/cpp/remoteclient/remoteclient.cxx @@ -35,6 +35,7 @@ #include <stdio.h> #include <osl/mutex.hxx> +#include <uno/lbnames.h> #include <cppuhelper/factory.hxx> #include <com/sun/star/uno/XNamingService.hpp> @@ -245,6 +246,13 @@ SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory( return pRet; } + +SAL_DLLPUBLIC_EXPORT void SAL_CALL component_getImplementationEnvironment( + char const ** ppEnvTypeName, uno_Environment **) +{ + *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME; +} + } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |