1 /*---------------------------------------------------------------------------* 2 Project: TwlSDK - GX 3 File: gx.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 18 #ifndef NITRO_GX_H_ 19 #define NITRO_GX_H_ 20 21 #ifdef __cplusplus 22 extern "C" { 23 #endif 24 25 26 #ifdef SDK_ARM9 27 28 #include <nitro/gx/g3.h> 29 #include <nitro/gx/g3x.h> 30 #include <nitro/gx/g2.h> 31 #include <nitro/gx/gx.h> 32 #include <nitro/gx/gx_vramcnt.h> 33 #include <nitro/gx/gx_bgcnt.h> 34 #include <nitro/gx/gx_capture.h> 35 #include <nitro/gx/g2_oam.h> 36 #include <nitro/gx/struct_2d.h> 37 #include <nitro/gx/g3b.h> 38 #include <nitro/gx/g3c.h> 39 40 /* if include from Other Environment for exsample VC or BCB, */ 41 /* please define SDK_FROM_TOOL */ 42 #if !(defined(SDK_WIN32) || defined(SDK_FROM_TOOL)) 43 44 #include <nitro/gx/g3imm.h> 45 #include <nitro/gx/g3_util.h> 46 #include <nitro/gx/gx_load.h> 47 48 #endif // SDK_FROM_TOOL 49 50 51 #else //SDK_ARM7 52 53 /* if include from Other Environment for exsample VC or BCB, */ 54 /* please define SDK_FROM_TOOL */ 55 #if !(defined(SDK_WIN32) || defined(SDK_FROM_TOOL)) 56 57 #include <nitro/gx/gx_sp.h> 58 59 #endif // SDK_FROM_TOOL 60 61 #endif 62 63 64 65 66 #ifdef __cplusplus 67 } /* extern "C" */ 68 #endif 69 70 /* NITRO_GX_H_ */ 71 #endif 72