1 /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - WXC - demos - relayStation-1
3   File:     user.h
4 
5   Copyright 2005-2009 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:: 2007-11-15#$
14   $Rev: 2414 $
15   $Author: hatamoto_minoru $
16  *---------------------------------------------------------------------------*/
17 
18 #ifndef NITRO_BUILD_DEMOS_INCLUDE_USER_H_
19 #define NITRO_BUILD_DEMOS_INCLUDE_USER_H_
20 
21 /* GGID used for testing */
22 #define SDK_MAKEGGID_SYSTEM(num)              (0x003FFF00 | (num))
23 #define GGID_ORG_1                            SDK_MAKEGGID_SYSTEM(0x53)
24 #define GGID_ORG_2                            SDK_MAKEGGID_SYSTEM(0x54)
25 
26 /* Number of selection items on the menu screen */
27 #define MENU_MIN 1
28 #define MENU_MAX 3
29 
30 extern BOOL passby_ggid[MENU_MAX];
31 extern BOOL keep_flg;
32 extern int passby_endflg;
33 
34 void    User_Init(void);
35 
36 #endif /* NITRO_BUILD_DEMOS_INCLUDE_USER_H_ */
37