| 127 | } |
| 128 | |
| 129 | struct hc_dlib *hc_dlib_deinit(struct hc_dlib *lib) { |
| 130 | if (dlclose(lib->handle) != 0) { |
| 131 | hc_throw("Failed closing dynamic library: ", dlerror()); |
| 132 | } |
| 133 | |
| 134 | return lib; |
| 135 | } |
| 136 | |
| 137 | void *hc_dlib_find(const struct hc_dlib *lib, const char *s) { |
| 138 | dlerror(); |
no outgoing calls