Changeset 7187 in orxonox.OLD for branches/shared_lib/src/util/loading
- Timestamp:
- Feb 22, 2006, 2:49:47 AM (19 years ago)
- Location:
- branches/shared_lib/src/util/loading
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/shared_lib/src/util/loading/dynamic_loader.h
r7175 r7187 8 8 9 9 #include "factory.h" 10 #include <ltdl.h>10 #include "lib/libltdl/ltdl.h" 11 11 12 12 #include <string> -
branches/shared_lib/src/util/loading/resource_manager.cc
r7174 r7187 1049 1049 { 1050 1050 char cwd[1024]; 1051 char* err no= getcwd(cwd, 1024);1052 if (err no== 0)1051 char* errorCode = getcwd(cwd, 1024); 1052 if (errorCode == 0) 1053 1053 return NULL; 1054 1054
Note: See TracChangeset
for help on using the changeset viewer.