Contexts
| 30 | |
| 31 | // Contexts |
| 32 | void recompui_create_context(uint8_t* rdram, recomp_context* ctx) { |
| 33 | (void)rdram; |
| 34 | ContextId ui_context = create_context(); |
| 35 | |
| 36 | _return<uint32_t>(ctx, ui_context.slot_id); |
| 37 | } |
| 38 | |
| 39 | void recompui_open_context(uint8_t* rdram, recomp_context* ctx) { |
| 40 | ContextId ui_context = get_context(rdram, ctx); |
nothing calls this directly
no outgoing calls
no test coverage detected