WUMSLoader/relocator/src/hooks.h

14 lines
497 B
C
Raw Normal View History

#pragma once
#include "ModuleDataMinimal.h"
2022-02-04 21:44:03 +01:00
#include <vector>
#include <wums.h>
void CallHook(const std::vector<std::shared_ptr<ModuleDataMinimal>> &modules, wums_hook_type_t type, bool condition);
2021-12-07 18:23:18 +01:00
void CallHook(const std::vector<std::shared_ptr<ModuleDataMinimal>> &modules, wums_hook_type_t type);
2020-06-07 13:59:02 +02:00
void CallHook(const std::shared_ptr<ModuleDataMinimal> &module, wums_hook_type_t type, bool condition);
void CallHook(const std::shared_ptr<ModuleDataMinimal> &module, wums_hook_type_t type);