diff options
author | red031000 <rubenru09@aol.com> | 2020-08-01 17:48:09 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-08-01 17:48:44 +0100 |
commit | 97c88ac3a84259a4114fe8574a8b7ab33187101a (patch) | |
tree | ae327effbcda45a66f2357640d18727ca12f2efe /arm9/lib/include/OS_context.h | |
parent | 138893481737a0d057a86dad8ed5181e0ade92d6 (diff) |
arm9 OS_context
Diffstat (limited to 'arm9/lib/include/OS_context.h')
-rw-r--r-- | arm9/lib/include/OS_context.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arm9/lib/include/OS_context.h b/arm9/lib/include/OS_context.h index 7a58a2b1..7c25ce2e 100644 --- a/arm9/lib/include/OS_context.h +++ b/arm9/lib/include/OS_context.h @@ -15,8 +15,8 @@ typedef struct OSContext CPContext cp_context; } OSContext; -extern u32 OS_SaveContext(OSContext *context); -extern void OS_LoadContext(OSContext *context); -extern void OS_InitContext(OSContext *context, u32 func, u32 stack); +void OS_InitContext(register OSContext *context, register u32 newpc, register u32 newsp); +BOOL OS_SaveContext(OSContext *context); +void OS_LoadContext(OSContext *context); #endif //POKEDIAMOND_OS_CONTEXT_H |