1 /*---------------------------------------------------------------------------*
2   Project:  Dolphin/Revolution gx demo
3   File:     toy-stick.h
4 
5   Copyright 1998-2006 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 
14 #ifndef __TOY_STICK_H__
15 #define __TOY_STICK_H__
16 
17 f32  GetAnalogX(void);
18 f32  GetAnalogY(void);
19 void StickTick(void);
20 u16  StickDone(void);
21 
22 #endif  // __TOY_STICK_H__
23