WUT  0.1
Wii U Toolchain
exception.h
Go to the documentation of this file.
1 #pragma once
2 #include <wut.h>
3 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 typedef uint32_t OSExceptionType;
15 typedef BOOL (*OSExceptionCallbackFn)(OSContext *context);
16 
17 enum OSExceptionType
18 {
34 };
35 
37 OSSetExceptionCallback(OSExceptionType exceptionType,
38  OSExceptionCallbackFn callback);
39 
41 OSSetExceptionCallbackEx(UNKNOWN_ARG,
42  OSExceptionType exceptionType,
43  OSExceptionCallbackFn callback);
44 
45 #ifdef __cplusplus
46 }
47 #endif
48 
OSExceptionCallbackFn OSSetExceptionCallback(OSExceptionType exceptionType, OSExceptionCallbackFn callback)
OSExceptionType
Definition: exception.h:17
BOOL(* OSExceptionCallbackFn)(OSContext *context)
Definition: exception.h:15
int BOOL
Definition: wut_types.h:4
OSExceptionCallbackFn OSSetExceptionCallbackEx(UNKNOWN_ARG, OSExceptionType exceptionType, OSExceptionCallbackFn callback)