2024-08-02 00:56:22 -04:00
|
|
|
#define LEAN_SYMBOLS_HEADER
|
2024-07-14 05:03:18 -04:00
|
|
|
#include "{{ headerPath }}"
|
|
|
|
|
2024-08-01 21:57:31 -04: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 05:03:18 -04:00
|
|
|
|
2024-07-17 06:40:04 -04:00
|
|
|
{{ main }}
|