summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/DynamicLibrary.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2003-12-05 00:57:38 +0000
committerMark Spruiell <mes@zeroc.com>2003-12-05 00:57:38 +0000
commit931e8a6bd0a8ef0f86a0039fc59d485282927f86 (patch)
treef6d6b6254e89758654c88b8526e2c8c2b6f21d47 /cpp/src/Ice/DynamicLibrary.cpp
parentfix for rounded double (diff)
downloadice-931e8a6bd0a8ef0f86a0039fc59d485282927f86.tar.bz2
ice-931e8a6bd0a8ef0f86a0039fc59d485282927f86.tar.xz
ice-931e8a6bd0a8ef0f86a0039fc59d485282927f86.zip
removing UNICODE requirement on Win32
Diffstat (limited to 'cpp/src/Ice/DynamicLibrary.cpp')
-rw-r--r--cpp/src/Ice/DynamicLibrary.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/cpp/src/Ice/DynamicLibrary.cpp b/cpp/src/Ice/DynamicLibrary.cpp
index 0899c938142..058ee6d5251 100644
--- a/cpp/src/Ice/DynamicLibrary.cpp
+++ b/cpp/src/Ice/DynamicLibrary.cpp
@@ -13,7 +13,6 @@
// **********************************************************************
#include <Ice/DynamicLibrary.h>
-#include <IceUtil/Unicode.h>
#ifndef _WIN32
# include <dlfcn.h>
@@ -113,12 +112,7 @@ bool
IceInternal::DynamicLibrary::load(const string& lib)
{
#ifdef _WIN32
-# if _MSC_VER > 1200
- wstring wlib = IceUtil::stringToWstring(lib);
- _hnd = LoadLibrary(wlib.c_str());
-# else
_hnd = LoadLibrary(lib.c_str());
-# endif
#else
_hnd = dlopen(lib.c_str(), RTLD_NOW);
if(_hnd == 0)