mirror of https://github.com/zeldaret/mm.git
				
				
				
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			545 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			545 B
		
	
	
	
		
			C
		
	
	
	
#ifndef FAULT_INTERNAL_H
 | 
						|
#define FAULT_INTERNAL_H
 | 
						|
 | 
						|
#include "ultra64.h"
 | 
						|
 | 
						|
 | 
						|
typedef void (*FaultDrawerCallback)(void);
 | 
						|
 | 
						|
void FaultDrawer_SetOsSyncPrintfEnabled(u32 enabled);
 | 
						|
void FaultDrawer_DrawRecImpl(s32 xStart, s32 yStart, s32 xEnd, s32 yEnd, u16 color);
 | 
						|
void FaultDrawer_FillScreen(void);
 | 
						|
void* FaultDrawer_FormatStringFunc(void* arg, const char* str, size_t count);
 | 
						|
void FaultDrawer_SetDrawerFrameBuffer(void* frameBuffer, u16 w, u16 h);
 | 
						|
void FaultDrawer_SetInputCallback(FaultDrawerCallback callback);
 | 
						|
void FaultDrawer_Init(void);
 | 
						|
 | 
						|
 | 
						|
#endif
 |