Files
AC6_recomp/thirdparty/rexglue-sdk/resources/templates/codegen/init_cpp.inja
T
2026-04-17 20:09:41 +03:00

12 lines
503 B
Plaintext

//=============================================================================
// ReXGlue Generated - {{ project }} Function Mapping Table
//=============================================================================
#include "{{ project }}_init.h"
PPCFuncMapping PPCFuncMappings[] = {
{% for fn in functions %}{% if not fn.below_code_base %} { {{ fn.address }}, {{ fn.name }} },
{% endif %}{% endfor %}{% for imp in imports %} { {{ imp.address }}, {{ imp.name }} },
{% endfor %} { 0, nullptr }
};