diff options
| author | robojumper <robojumper@gmail.com> | 2024-10-10 18:21:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-10 12:21:07 -0400 |
| commit | 98f7e90125bf4f30e3281f41235ac95f8ea3808f (patch) | |
| tree | 962c17be9494ea01971ae657491037f4193e8092 /include/d/a/d_a_col_stp.h | |
| parent | 558db54bf44b7fe885705a6d5b513000b8d75cf6 (diff) | |
Set up REL templates (#60)
* Fix .data sections misidentified as .rodata by dtk
dtk can't always reliably identify REL sections in its initial analysis.
This is a manual fix - the list of RELs to fix was found by looking
at supposed .rodata splits that contained an fBase vtable, since vtables
should be in .data. This fix is required for scripted creation of REL actors
based on rel .data
* More consistent d/t header paths
* Data fixups for parsing
* Tmp actor file setup
* Fixes
* Set up almost all REL templates
* formatting
* Fix formatting
Diffstat (limited to 'include/d/a/d_a_col_stp.h')
| -rw-r--r-- | include/d/a/d_a_col_stp.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/d/a/d_a_col_stp.h b/include/d/a/d_a_col_stp.h new file mode 100644 index 00000000..9543b3ba --- /dev/null +++ b/include/d/a/d_a_col_stp.h @@ -0,0 +1,14 @@ +#ifndef D_A_COL_STP_H +#define D_A_COL_STP_H + +#include <d/a/obj/d_a_obj_base.h> + +class dAcColStp_c : public dAcObjBase_c { +public: + dAcColStp_c(); + virtual ~dAcColStp_c(); + +private: +}; + +#endif |
