Changeset 2496 in Sophya for trunk/SophyaLib/SysTools/pdlmgr.h
- Timestamp:
- Feb 3, 2004, 12:05:44 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SysTools/pdlmgr.h
r1900 r2496 13 13 #include <dl.h> 14 14 #elif defined(Darwin) 15 #include < /sw/include/dlfcn.h>15 #include <mach-o/dyld.h> 16 16 #else 17 17 #include <dlfcn.h> … … 35 35 36 36 virtual DlFunction GetFunction(string const & funcname); 37 inline DlFunction GetFunction(const char * funcname) 38 { string fname = funcname; return GetFunction(fname); } 39 40 inline string GetName() const { return soName; } 37 41 38 42 protected : … … 43 47 #if defined(HPUX) 44 48 shl_t dlhandle; 49 #elif defined(Darwin) 50 NSObjectFileImage nsobjfile; 51 NSModule nsmod; 45 52 #else 46 53 void * dlhandle; 47 54 #endif 55 bool dylok; 48 56 string soName; 49 57 bool copy;
Note:
See TracChangeset
for help on using the changeset viewer.