2020-04-29 18:02:36 +02:00
|
|
|
#pragma once
|
2020-05-03 12:30:15 +02:00
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
#include "plugin/PluginContainer.h"
|
2024-11-27 20:44:20 +01:00
|
|
|
|
|
|
|
#include <functional>
|
2022-05-14 14:00:20 +02:00
|
|
|
#include <vector>
|
2022-02-11 22:18:15 +01:00
|
|
|
#include <wups/hooks.h>
|
2020-04-29 18:02:36 +02:00
|
|
|
|
2024-11-27 20:44:20 +01:00
|
|
|
void CallHook(const std::vector<PluginContainer> &plugins, wups_loader_hook_type_t hook_type, const std::function<bool(const PluginContainer &)> &pred);
|
|
|
|
|
2024-03-24 07:40:58 +01:00
|
|
|
void CallHook(const std::vector<PluginContainer> &plugins, wups_loader_hook_type_t hook_type);
|
2020-05-03 12:30:15 +02:00
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
void CallHook(const PluginContainer &plugin, wups_loader_hook_type_t hook_type);
|