1 /*---------------------------------------------------------------------------* 2 Project: TwlSDK - GX - demos - UnitTours/DEMOLib 3 File: DEMOInit.h 4 5 Copyright 2003-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-09-18#$ 14 $Rev: 8573 $ 15 $Author: okubata_ryoma $ 16 *---------------------------------------------------------------------------*/ 17 #ifndef DEMO_INIT_H_ 18 #define DEMO_INIT_H_ 19 20 #ifdef __cplusplus 21 extern "C" { 22 #endif 23 24 extern void VBlankIntr(void); 25 26 void DEMOInitCommon(void); 27 void DEMOInitVRAM(void); 28 void DEMOInitDisplayBG0Only(void); 29 void DEMOInitDisplaySubBG0Only(void); 30 void DEMOInitDisplayBG2Only(void); 31 void DEMOInitDisplaySubBG2Only(void); 32 void DEMOInitDisplayOBJOnly(void); 33 void DEMOInitDisplaySubOBJOnly(void); 34 void DEMOInitDisplay3D(void); 35 void DEMOInit(void); 36 37 void DEMOStartDisplay(void); 38 39 #ifdef __cplusplus 40 }/* extern "C" */ 41 #endif 42 43 /* DEMO_INIT_H_ */ 44 #endif 45