2024-08-02 04:56:22 +00:00
|
|
|
#define LEAN_SYMBOLS_HEADER
|
2024-07-14 09:03:18 +00:00
|
|
|
#include "{{ headerPath }}"
|
|
|
|
|
2024-08-02 01:57:31 +00:00
|
|
|
// Thunk Template
|
|
|
|
template <auto *const *func>
|
|
|
|
decltype(auto) __thunk(auto... args) {
|
|
|
|
return (*func)->get_thunk_target()(std::forward<decltype(args)>(args)...);
|
|
|
|
}
|
2024-07-14 09:03:18 +00:00
|
|
|
|
2024-07-17 10:40:04 +00:00
|
|
|
{{ main }}
|