| 87 | void save(void **p) { ptr= p; value= *p; } |
| 88 | void save(const char **p) { save((void**)p); } |
| 89 | void restore() { *ptr= value; } |
| 90 | }; |
| 91 | |
| 92 | /* A handle for the dynamic library containing a plugin or plugins. */ |
no outgoing calls
no test coverage detected