committed 1.3 release

This commit is contained in:
Guenter Obiltschnig
2007-05-07 16:46:23 +00:00
parent be44df77fd
commit cf80f255be
36 changed files with 521 additions and 82 deletions

View File

@@ -1,7 +1,7 @@
//
// SharedLibrary_WIN32.cpp
//
// $Id: //poco/Main/Foundation/src/SharedLibrary_WIN32.cpp#12 $
// $Id: //poco/Main/Foundation/src/SharedLibrary_WIN32.cpp#13 $
//
// Library: Foundation
// Package: SharedLibrary
@@ -60,7 +60,7 @@ void SharedLibraryImpl::loadImpl(const std::string& path)
FastMutex::ScopedLock lock(_mutex);
if (_handle) throw LibraryAlreadyLoadedException(_path);
_handle = LoadLibrary(path.c_str());
_handle = LoadLibraryA(path.c_str());
if (!_handle) throw LibraryLoadException(path);
_path = path;
}