Changeset 6073 for code/trunk/src/libraries/core/DynLib.cc
- Timestamp:
- Nov 15, 2009, 11:44:58 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/DynLib.cc
r5750 r6073 70 70 COUT(2) << "Loading module " << mName << std::endl; 71 71 72 72 std::string name = mName; 73 73 #ifdef ORXONOX_PLATFORM_LINUX 74 74 // dlopen() does not add .so to the filename, like windows does for .dll … … 93 93 94 94 if( DYNLIB_UNLOAD( m_hInst ) ) 95 95 { 96 96 ThrowException( 97 97 General, 98 98 "Could not unload dynamic library " + mName + 99 99 ". System Error: " + dynlibError()); 100 100 } 101 101 102 102 }
Note: See TracChangeset
for help on using the changeset viewer.