/*---------------------------------------------------------------------------* Project: TwlSDK - WVR - demos - with_mb File: common.h Copyright 2003-2008 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. $Date:: 2008-09-17#$ $Rev: 8556 $ $Author: okubata_ryoma $ *---------------------------------------------------------------------------*/ #ifndef MB_DEMO_COMMON_H_ #define MB_DEMO_COMMON_H_ #ifdef __cplusplus extern "C" { #endif #include //============================================================================ // Function Declarations //============================================================================ void CommonInit(); void ReadKey(void); u16 GetPressKey(void); u16 GetTrigKey(void); void InitAllocateSystem(void); /*---------------------------------------------------------------------------* Name: IS_PAD_PRESS Description: Determines key. Arguments: Key flag to determine Returns: TRUE if specified key is pressed Otherwise, FALSE *---------------------------------------------------------------------------*/ static inline BOOL IS_PAD_PRESS(u16 flag) { return (GetPressKey() & flag) == flag; } /*---------------------------------------------------------------------------* Name: IS_PAD_TRIGGER Description: Determines key trigger. Arguments: Key flag to determine Returns: If specified key trigger is enabled, TRUE Otherwise, FALSE *---------------------------------------------------------------------------*/ static inline BOOL IS_PAD_TRIGGER(u16 flag) { return (GetTrigKey() & flag) == flag; } #ifdef __cplusplus } /* extern "C" */ #endif #endif /* MB_DEMO_COMMON_H_ */