#ifndef __OSERROR_H__ #define __OSERROR_H__ #include #ifdef __cplusplus extern "C" { #endif typedef u16 OSError; typedef void OSErrorHandler(OSError, OSContext* context, ...); void OSSetErrorHandler(OSError code, OSErrorHandler* handler); #ifdef __cplusplus } #endif #endif