1 /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - OS
3   File:     os_attention.h
4 
5   Copyright 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:: 2009-10-19#$
14   $Rev: 11099 $
15   $Author: mizutani_nakaba $
16  *---------------------------------------------------------------------------*/
17 
18 #ifndef TWL_OS_ATTENTION_H_
19 #define TWL_OS_ATTENTION_H_
20 
21 #include <nitro/misc.h>
22 #include <nitro/types.h>
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
28 
29 /*---------------------------------------------------------------------------*
30   Name:         OS_ShowAttentionOfLimitedRom
31 
32   Description:  show string of attention to run limited mode on NITRO.
33 
34   Arguments:    None.
35 
36   Returns:      None.
37  *---------------------------------------------------------------------------*/
38 void OS_ShowAttentionOfLimitedRom(void);
39 
40 
41 #ifdef __cplusplus
42 }
43 #endif
44 
45 #endif // #ifndef TWL_OS_ATTENTION_H_
46 
47