1 /*---------------------------------------------------------------------------* 2 Project: TwlSDK - demos.TWL - os - os_jump 3 File: screen.h 4 5 Copyright 2007-2008 Nintendo. All rights reserved. 6 7 These coded instructions, statements, and computer programs contain 8 proprietary information of Nintendo of America Inc. and/or Nintendo 9 Company Ltd., and are protected by Federal copyright law. They may 10 not be disclosed to third parties or copied or duplicated in any form, 11 in whole or in part, without the prior written consent of Nintendo. 12 13 $Date:: 2008-10-08#$ 14 $Rev: 8901 $ 15 $Author: okajima_manabu $ 16 *---------------------------------------------------------------------------*/ 17 #ifndef SCREEN_H_ 18 #define SCREEN_H_ 19 20 #ifdef __cplusplus 21 22 extern "C" { 23 #endif 24 25 /*===========================================================================*/ 26 #include <nitro/types.h> 27 28 /*---------------------------------------------------------------------------* 29 Function Definitions 30 *---------------------------------------------------------------------------*/ 31 void InitScreen(void); 32 void ClearScreen(void); 33 void ClearMainScreen(void); 34 void ClearSubScreen(void); 35 void PutMainScreen(s32 x, s32 y, u8 palette, char* text, ...); 36 void PutSubScreen(s32 x, s32 y, u8 palette, char* text, ...); 37 void UpdateScreen(void); 38 39 /*===========================================================================*/ 40 #ifdef __cplusplus 41 42 } /* extern "C" */ 43 #endif 44 45 #endif /* SCREEN_H_ */ 46 47 /*---------------------------------------------------------------------------* 48 End of file 49 *---------------------------------------------------------------------------*/ 50