mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
9649319ec4
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
25 lines
630 B
C
25 lines
630 B
C
#ifndef M_DO_M_DO_PRINTF_H
|
|
#define M_DO_M_DO_PRINTF_H
|
|
|
|
#include <os.h>
|
|
|
|
void my_PutString(const char*);
|
|
void mDoPrintf_vprintf_Interrupt(char const*, va_list);
|
|
void mDoPrintf_vprintf_Thread(char const*, va_list);
|
|
void mDoPrintf_vprintf(const char*, va_list);
|
|
extern "C" void mDoPrintf_VReport(const char*, va_list);
|
|
|
|
extern u32 print_counts;
|
|
extern u32 print_errors;
|
|
extern u32 print_warings;
|
|
extern u32 print_systems;
|
|
extern u8 print_initialized;
|
|
|
|
extern u8 print_mutex_initialized;
|
|
extern u8 print_highPriority;
|
|
extern u8 print_threadID;
|
|
extern u8 print_callerPC;
|
|
extern u8 print_callerPCLevel;
|
|
|
|
#endif /* M_DO_M_DO_PRINTF_H */
|