| 202 | inline HookFlags operator|(HookFlags lhs, HookFlags rhs) { return HookFlags(uint32_t(lhs) | uint32_t(rhs)); } |
| 203 | |
| 204 | struct FunctionHook { |
| 205 | uint32_t func_index; |
| 206 | uint32_t original_section_vrom; |
| 207 | uint32_t original_vram; |
| 208 | HookFlags flags; |
| 209 | }; |
| 210 | |
| 211 | class Context { |
| 212 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected