class KLibrary |
|
|
Represents a dynamically loaded library. KLibrary allows you to look up symbols of the shared library. Use KLibLoader to create a new instance of KLibrary.
See also KLibLoader
Author Torben Weis |
|
|
|
Returns the factory of the library. factoryname - The postfix to the init_ symbol used to create the factory object. It corresponds to the first parameter to K_EXPORT_COMPONENT_FACTORY. Returns The factory of the library if there is any, otherwise 0 |
|
Returns the file name of the library. Returns The filename of the library, for example "/opt/kde2&/lib/libkspread.la" |
|
Returns the name of the library. Returns The name of the library like "libkspread". |
|
Looks up a symbol from the library. This is a very low level function that you usually don't want to use. name - the name of the symbol to look up Returns the address of the symbol, or 0 if it does not exist |
|
Looks up a symbol from the library. This is a very low level function that you usually don't want to use. name - the name of the symbol to look up Returns the address of the symbol, or 0 if it does not exist |
|
Unloads the library. This typically results in the deletion of this object. You should not reference its pointer after calling this function. |
|