1 /*---------------------------------------------------------------------------*
2   Project:  Revolution Operation System Log Interface
3   File:     OSLog.h
4 
5   Copyright 2008-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 
14 #ifndef _OS_LOG_H_
15 #define _OS_LOG_H_
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 #define OSLOG_RESULT_OK     0
22 
23 #define OS_REPORT_SERIAL    0x00000001
24 #define OS_REPORT_NAND      0x00000002
25 
26 s32 OSReportDestination( u32 dest );
27 s32 OSReportFlush      ( void );
28 
29 #ifdef __cplusplus
30 }
31 #endif
32 
33 #endif
34