MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / HookFlags

Enum HookFlags

include/recompiler/context.h:198–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196 };
197
198 enum class HookFlags : uint32_t {
199 AtReturn = 1 << 0,
200 };
201 inline HookFlags operator&(HookFlags lhs, HookFlags rhs) { return HookFlags(uint32_t(lhs) & uint32_t(rhs)); }
202 inline HookFlags operator|(HookFlags lhs, HookFlags rhs) { return HookFlags(uint32_t(lhs) | uint32_t(rhs)); }
203

Callers 2

operator&Function · 0.85
operator|Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected