mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-12-18 17:11:54 +01:00
13 lines
446 B
C++
13 lines
446 B
C++
#pragma once
|
|
|
|
#include "plugin/PluginContainer.h"
|
|
|
|
#include <functional>
|
|
#include <vector>
|
|
#include <wups/hooks.h>
|
|
|
|
void CallHook(const std::vector<PluginContainer> &plugins, wups_loader_hook_type_t hook_type, const std::function<bool(const PluginContainer &)> &pred);
|
|
|
|
void CallHook(const std::vector<PluginContainer> &plugins, wups_loader_hook_type_t hook_type);
|
|
|
|
void CallHook(const PluginContainer &plugin, wups_loader_hook_type_t hook_type); |