Typedefs | |
| typedef apr_dso_handle_t | switch_dso_handle_t |
| typedef void * | switch_dso_handle_sym_t |
Functions | |
| switch_status_t | switch_dso_load (switch_dso_handle_t **res_handle, const char *path, switch_memory_pool_t *ctx) |
| switch_status_t | switch_dso_unload (switch_dso_handle_t *handle) |
| switch_status_t | switch_dso_sym (switch_dso_handle_sym_t *ressym, switch_dso_handle_t *handle, const char *symname) |
| const char * | switch_dso_error (switch_dso_handle_t *dso, char *buf, size_t bufsize) |
|
|
Structure for referencing symbols from dynamic objects |
|
|
Structure for referencing dynamic objects |
|
||||||||||||||||
|
Report more information when a DSO function fails.
00099 {
00100 return apr_dso_error(dso, buf, bufsize);
00101 }
|
|
||||||||||||||||
|
Load a DSO library.
00084 {
00085 return apr_dso_load(res_handle, path, ctx);
00086 }
|
|
||||||||||||||||
|
Load a symbol from a DSO handle.
00094 {
00095 return apr_dso_sym(ressym, handle, symname);
00096 }
|
|
|
Close a DSO library.
00089 {
00090 return apr_dso_unload(handle);
00091 }
|
1.3.9.1