mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
add stdcall to meta
This commit is contained in:
parent
4480c7f00c
commit
78c072ee5b
2 changed files with 27 additions and 0 deletions
loader/include/Geode/meta
|
@ -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 */
|
||||
|
|
26
loader/include/Geode/meta/stdcall.hpp
Normal file
26
loader/include/Geode/meta/stdcall.hpp
Normal 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 */
|
Loading…
Add table
Reference in a new issue