| 82 | } |
| 83 | |
| 84 | DFhackCExport command_result plugin_shutdown (color_ostream &out) |
| 85 | { |
| 86 | if (is_enabled) |
| 87 | { |
| 88 | plugin_enable(out, false); |
| 89 | } |
| 90 | if (sdl_handle) |
| 91 | { |
| 92 | ClosePlugin(sdl_handle); |
| 93 | sdl_handle = NULL; |
| 94 | } |
| 95 | return CR_OK; |
| 96 | } |
| 97 | |
| 98 | DFhackCExport command_result plugin_enable (color_ostream &out, bool state) |
| 99 | { |
nothing calls this directly
no test coverage detected