| 620 | #if RESHADE_GUI |
| 621 | |
| 622 | void ReShadeRegisterOverlay(const char *title, void(*callback)(reshade::api::effect_runtime *runtime)) |
| 623 | { |
| 624 | ReShadeRegisterOverlayForAddon(nullptr, title, callback); |
| 625 | } |
| 626 | void ReShadeRegisterOverlayForAddon(void *module, const char *title, void(*callback)(reshade::api::effect_runtime *runtime)) |
| 627 | { |
| 628 | reshade::addon_info *const info = reshade::find_addon(module != nullptr ? module : static_cast<void *>(callback)); |
no test coverage detected