/*---------------------------------------------------------------------------* Project: Revolution Operation System Log Interface File: OSLog.h Copyright 2008-2009 Nintendo. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. *---------------------------------------------------------------------------*/ #ifndef _OS_LOG_H_ #define _OS_LOG_H_ #ifdef __cplusplus extern "C" { #endif #define OSLOG_RESULT_OK 0 #define OS_REPORT_SERIAL 0x00000001 #define OS_REPORT_NAND 0x00000002 s32 OSReportDestination( u32 dest ); s32 OSReportFlush ( void ); #ifdef __cplusplus } #endif #endif