summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/PluginI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/PluginI.cpp')
-rwxr-xr-xcpp/src/IceSSL/PluginI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceSSL/PluginI.cpp b/cpp/src/IceSSL/PluginI.cpp
index cb515311c5a..b556be171c0 100755
--- a/cpp/src/IceSSL/PluginI.cpp
+++ b/cpp/src/IceSSL/PluginI.cpp
@@ -24,7 +24,7 @@ using namespace IceSSL;
//
// Plug-in factory function.
//
-extern "C" ICE_SSL_API Ice::Plugin*
+extern "C" ICESSL_API Ice::Plugin*
createIceSSL(const CommunicatorPtr& communicator, const string& /*name*/, const StringSeq& /*args*/)
{
return new PluginI(communicator);
@@ -33,7 +33,7 @@ createIceSSL(const CommunicatorPtr& communicator, const string& /*name*/, const
namespace Ice
{
-ICE_SSL_API void
+ICESSL_API void
registerIceSSL(bool loadOnInitialize)
{
Ice::registerPluginFactory("IceSSL", createIceSSL, loadOnInitialize);
@@ -67,7 +67,7 @@ IceSSL::Plugin::~Plugin()
//
// Objective-C function to allow Objective-C programs to register plugin.
//
-extern "C" ICE_SSL_API void
+extern "C" ICESSL_API void
ICEregisterIceSSL(bool loadOnInitialize)
{
Ice::registerIceSSL(loadOnInitialize);