| 44 | static bool setupDone = setup(); |
| 45 | |
| 46 | obs_script_t *CreateOBSScript(const char *path, obs_data_t *settings) |
| 47 | { |
| 48 | if (!obs_script_create) { |
| 49 | return nullptr; |
| 50 | } |
| 51 | return obs_script_create(path, settings); |
| 52 | } |
| 53 | |
| 54 | void DestroyOBSScript(obs_script_t *script) |
| 55 | { |
no outgoing calls
no test coverage detected