add stdcall to meta

This commit is contained in:
altalk23 2022-11-28 23:22:21 +03:00
parent 4480c7f00c
commit 78c072ee5b
2 changed files with 27 additions and 0 deletions
loader/include/Geode/meta

View file

@ -16,6 +16,7 @@ namespace geode::core::meta::x86 {}
#include "membercall.hpp"
#include "optcall.hpp"
#include "thiscall.hpp"
#include "stdcall.hpp"
#endif
#endif /* GEODE_CORE_META_META_HPP */

View file

@ -0,0 +1,26 @@
#ifndef GEODE_CORE_META_STDCALL_HPP
#define GEODE_CORE_META_STDCALL_HPP
namespace geode::core::meta::x86 {
template <class Ret, class... Args>
class Thiscall {
private:
template <Ret (*detour)(Args...)>
static Ret __stdcall wrapper(Args... all) {
return detour(all...);
}
public:
static Ret invoke(void* address, Args... all) {
Ret(__stdcall * 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_STDCALL_HPP */