diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-11-01 12:15:52 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-11-01 12:15:52 -0400 |
commit | 4ec499e811471faed876ccbff896ccfaf7ece308 (patch) | |
tree | f6ff6fe77a31c83efba2e4f6851aac10abb5d402 /cpp/src/IceSSL/PluginI.cpp | |
parent | Replaced slice compiler options --ice, --underscore and --dll-export by (diff) | |
download | ice-4ec499e811471faed876ccbff896ccfaf7ece308.tar.bz2 ice-4ec499e811471faed876ccbff896ccfaf7ece308.tar.xz ice-4ec499e811471faed876ccbff896ccfaf7ece308.zip |
More consistent names for _API macros
Diffstat (limited to 'cpp/src/IceSSL/PluginI.cpp')
-rwxr-xr-x | cpp/src/IceSSL/PluginI.cpp | 6 |
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); |