diff options
author | Michi Henning <michi@zeroc.com> | 2003-10-22 04:23:18 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-10-22 04:23:18 +0000 |
commit | 454e47fe64d0af9da26b7c110f9d39abc42d9b25 (patch) | |
tree | c040aa05dae778bd24a5f18e684c2301f0054aa0 | |
parent | fixing dependencies (diff) | |
download | ice-454e47fe64d0af9da26b7c110f9d39abc42d9b25.tar.bz2 ice-454e47fe64d0af9da26b7c110f9d39abc42d9b25.tar.xz ice-454e47fe64d0af9da26b7c110f9d39abc42d9b25.zip |
Added missing ICE_UTIL_API directives.
-rw-r--r-- | cpp/include/IceUtil/GCRecMutex.h | 6 | ||||
-rw-r--r-- | cpp/src/IceUtil/GCRecMutex.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/IceUtil/GCRecMutex.h b/cpp/include/IceUtil/GCRecMutex.h index 47c80cc0772..ac8663d78bb 100644 --- a/cpp/include/IceUtil/GCRecMutex.h +++ b/cpp/include/IceUtil/GCRecMutex.h @@ -20,7 +20,7 @@ namespace IceUtil { -class GCRecMutex +class ICE_UTIL_API GCRecMutex { public: @@ -29,9 +29,9 @@ public: RecMutex* _m; }; -extern GCRecMutex gcRecMutex; +extern ICE_UTIL_API GCRecMutex gcRecMutex; -class GCRecMutexInit +class ICE_UTIL_API GCRecMutexInit { public: diff --git a/cpp/src/IceUtil/GCRecMutex.cpp b/cpp/src/IceUtil/GCRecMutex.cpp index 736dccd764d..1cb20dc190a 100644 --- a/cpp/src/IceUtil/GCRecMutex.cpp +++ b/cpp/src/IceUtil/GCRecMutex.cpp @@ -16,7 +16,7 @@ using namespace IceUtil; -GCRecMutex IceUtil::gcRecMutex; +GCRecMutex ICE_UTIL_API IceUtil::gcRecMutex; static int gcInitCount = 0; |