| 169 | } |
| 170 | |
| 171 | void RunLoadSteps(obs_data_t *obj) |
| 172 | { |
| 173 | std::lock_guard<std::mutex> lock(mutex); |
| 174 | for (const auto &func : getEarlyLoadSteps()) { |
| 175 | func(obj); |
| 176 | } |
| 177 | for (const auto &func : getLoadSteps()) { |
| 178 | func(obj); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | void RunAndClearPostLoadSteps() |
| 183 | { |