1 /*--------------------------------------------------------------------------
2   Project:  Horizon
3   File:     rdt_Misc.h
4 
5   Copyright (C)2010 Nintendo Co., Ltd..  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   $Rev: 38552 $
14  *-------------------------------------------------------------------------*/
15 
16 ////#include <stdafx.h>
17 
18 #ifndef NN_RDT_MISC_H_
19 #define NN_RDT_MISC_H_
20 
21 
22 #include <nn/rdt/CTR/rdt_define.h>
23 
24 #include <nn/types.h>
25 #include <nn/Result.h>
26 
27 
28 namespace nn { namespace rdt { namespace CTR {
29 
30     const bit32 LOG_LEVEL_NONE = 0x00000000;  //
31     const bit32 LOG_LEVEL_ALL  = 0xffffffff;  //
32 
33 /* Please see man pages for details
34 
35 
36 
37 
38 
39 
40 
41 
42 
43 
44 
45 
46 
47 
48 
49 
50  */
51     nn::Result SetLogLevel(bit32 level);
52 
53 
54 /* Please see man pages for details
55 
56 
57 
58 
59 
60  */
61     bit32 GetLogLevel(void);
62 
63 
64 }}} // namespace nn::rdt::CTR
65 
66 #endif  // end of NN_RDT_MISC_H_
67