From ffebb519c4f09caaad266a6d264b9c8ad7df18d4 Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 9 Feb 2023 14:24:01 +0100 Subject: [PATCH] coreinit: Add missing functions for setting the context --- include/coreinit/context.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/coreinit/context.h b/include/coreinit/context.h index 26acc791..84d6e3fd 100644 --- a/include/coreinit/context.h +++ b/include/coreinit/context.h @@ -105,6 +105,12 @@ OSSetCurrentContext(OSContext *context); void * OSSwitchStack(void *stack); +void +__OSSetCurrentUserContext(OSContext *context); + +void +__OSSetAndLoadContext(OSContext *context); + #ifdef __cplusplus } #endif