Changeset 268
- Timestamp:
- 07/24/07 12:03:01 (1 year ago)
- Files:
-
- trunk/DerelictUtil/derelict/util/loader.d (modified) (1 diff)
- trunk/docs/loading.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/DerelictUtil/derelict/util/loader.d
r267 r268 291 291 char[] libName() 292 292 { 293 return myLib.name;293 return loaded ? myLib.name : null; 294 294 } 295 295 trunk/docs/loading.html
r252 r268 1 1 <html lang="en"> 2 2 <head> 3 <title>Loading/Unloading Shared Libraries</title>4 <link rel="stylesheet" type="text/css" href="styles.css">3 <title>Loading/Unloading Shared Libraries</title> 4 <link rel="stylesheet" type="text/css" href="styles.css"> 5 5 </head> 6 6 <body> … … 92 92 </p> 93 93 94 <h4>Loader Properties</h4> 95 Loaders have two properties you may find useful. The <tt>loaded</tt> property 96 is true if the loader's shared library has been loaded, false if not. The <tt>libName</tt> 97 property will return the name of the shared library that has been loaded, or <tt>null</tt> 98 when the loader has no library loaded. 99 94 100 <h4>Note For Linux/Mac Users</h4> 95 101 On Linux and Mac, there is one additional dependency that must be linked into
