1 /*---------------------------------------------------------------------------* 2 Project: TwlSDK - OS - include 3 File: protectionUnit.h 4 5 Copyright 2003-2008 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:: 2008-09-18#$ 14 $Rev: 8573 $ 15 $Author: okubata_ryoma $ 16 17 *---------------------------------------------------------------------------*/ 18 19 #ifndef NITRO_OS_PROTECTIONUNIT_H_ 20 #define NITRO_OS_PROTECTIONUNIT_H_ 21 22 #ifdef __cplusplus 23 extern "C" { 24 #endif 25 26 #include <nitro/misc.h> 27 #include <nitro/types.h> 28 29 30 //====================================================================== 31 // protection unit 32 //====================================================================== 33 /*---------------------------------------------------------------------------* 34 Name: OS_EnableProtectionUnit 35 36 Description: enable protection unit 37 38 Arguments: None 39 40 Returns: None 41 *---------------------------------------------------------------------------*/ 42 void OS_EnableProtectionUnit(void); 43 44 /*---------------------------------------------------------------------------* 45 Name: OS_DisableProtectionUnit 46 47 Description: disable protection unit 48 49 Arguments: None 50 51 Returns: None 52 *---------------------------------------------------------------------------*/ 53 void OS_DisableProtectionUnit(void); 54 55 #ifdef __cplusplus 56 } /* extern "C" */ 57 #endif 58 59 /* NITRO_OS_PROTECTIONUNIT_H_ */ 60 #endif 61