symbol-processor/data/out.cpp

15 lines
343 B
C++
Raw Normal View History

2024-07-14 09:03:18 +00:00
#include "{{ headerPath }}"
// Thunks
template <typename Ret, typename... Args>
struct __Thunk<Ret(Args...)> {
2024-07-16 17:46:20 +00:00
template <__Function<Ret(Args...)> *const *func>
2024-07-14 09:03:18 +00:00
static Ret call(Args... args) {
2024-07-16 17:46:20 +00:00
return (*func)->get_thunk_target()(std::forward<Args>(args)...);
2024-07-14 09:03:18 +00:00
}
};
// Thunk Enabler
thunk_enabler_t thunk_enabler;
{{ main }}