mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
21 lines
552 B
C++
21 lines
552 B
C++
|
#ifndef GEODE_CORE_META_DEFAULTCONV_HPP
|
||
|
#define GEODE_CORE_META_DEFAULTCONV_HPP
|
||
|
|
||
|
namespace geode::core::meta {
|
||
|
template <class Ret, class... Args>
|
||
|
class DefaultConv {
|
||
|
public:
|
||
|
static Ret invoke(void* address, Args... all) {
|
||
|
Ret (*raw)(Args...) = reinterpret_cast<decltype(raw)>(address);
|
||
|
return raw(all...);
|
||
|
}
|
||
|
|
||
|
template <Ret (*detour)(Args...)>
|
||
|
static constexpr decltype(auto) get_wrapper() {
|
||
|
return detour;
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif /* GEODE_CORE_META_DEFAULTCONV_HPP */
|