geode/loader/include/Geode/meta/cdecl.hpp
2022-11-25 00:41:02 +03:00

26 lines
710 B
C++

#ifndef GEODE_CORE_META_CDECL_HPP
#define GEODE_CORE_META_CDECL_HPP
namespace geode::core::meta::x86 {
template <class Ret, class... Args>
class Cdecl {
private:
template <Ret (*detour)(Args...)>
static Ret __cdecl wrapper(Args... all) {
return detour(all...);
}
public:
static Ret invoke(void* address, Args... all) {
Ret(__cdecl * raw)(Args...) = reinterpret_cast<decltype(raw)>(address);
return raw(all...);
}
template <Ret (*detour)(Args...)>
static auto get_wrapper() {
return reinterpret_cast<void*>(&wrapper<detour>);
}
};
}
#endif /* GEODE_CORE_META_THISCALL_HPP */