mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-19 14:11:32 +00:00
* Start RAssertDolphin * Add OSContext * Add missing files, Prime2's ErrorHandler * Progress in ErrorHandler * comments * Don't link new code * Format code * Slight adjustments * Use u16 for OSError Former-commit-id: 7e8bc34cabd90ab0d70439dfe708b90bdb0aed0a
13 lines
248 B
C++
13 lines
248 B
C++
#ifndef _RASSERTDOLPHIN_HPP
|
|
#define _RASSERTDOLPHIN_HPP
|
|
|
|
#include "types.h"
|
|
|
|
#include "dolphin/os.h"
|
|
|
|
void rs_debugger_printf(const char* format, ...);
|
|
void ErrorHandler(OSError code, OSContext* context, int, int);
|
|
void SetErrorHandlers();
|
|
|
|
#endif
|