1 /*---------------------------------------------------------------------------* 2 Project: TwlSDK - screenshot test - Ext 3 File: ext_scrntest.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 EXT_SCRNTEST_H_ 18 #define EXT_SCRNTEST_H_ 19 20 #include <nitro/types.h> 21 #include <nitro/gx/gx_vramcnt.h> 22 23 #ifdef __cplusplus 24 extern "C" { 25 #endif 26 27 void EXT_Printf(const char *fmt, ...); 28 void EXT_CompPrint(const char *src1, const char *src2_fmt, ...); 29 void EXT_TestScreenShot(u32 testFrames, u32 checkSum); 30 void EXT_TestTickCounter(); 31 void EXT_TestResetCounter(); 32 void EXT_TestSetVRAMForScreenShot(GXVRamLCDC vram); 33 34 #ifdef __cplusplus 35 }/* extern "C" */ 36 #endif 37 38 #endif /* EXT_SCRNTEST_H_ */ 39