/*---------------------------------------------------------------------------* Project: WD demo File: sample.h Copyright 2006 Nintendo. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. $Log: sample.h,v $ Revision 1.2 2006/07/13 12:37:45 terui Fix appearance Revision 1.1 2006/07/13 12:16:23 terui Initial upload $NoKeywords: $ *---------------------------------------------------------------------------*/ #ifndef __DEMOS_WDDEMO_SAMPLE_H__ #define __DEMOS_WDDEMO_SAMPLE_H__ #include #ifdef __cplusplus extern "C" { #endif /*===========================================================================*/ #ifdef WPADEMU #define KPAD_BUTTON_PLUS KPAD_BUTTON_START #define KPAD_BUTTON_MINUS KPAD_BUTTON_SELECT #define KPAD_BUTTON_1 KPAD_BUTTON_SMALL_A #define KPAD_BUTTON_2 KPAD_BUTTON_SMALL_B #define KPAD_BUTTON_Z KPAD_BUTTON_Z1 #define KPAD_BUTTON_C KPAD_BUTTON_Z2 #endif void SampleInit( void ); void SampleWaitRetrace( void ); void SampleReport( const char* msg, ... ); /*===========================================================================*/ #ifdef __cplusplus } #endif #endif /* __DEMOS_WDDEMO_SAMPLE_H__ */ /*---------------------------------------------------------------------------* End of file *---------------------------------------------------------------------------*/