1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: applet_AppJump.h 4 5 Copyright (C)2009-2012 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:$ 14 *---------------------------------------------------------------------------*/ 15 16 #ifndef NN_APPLET_CTR_APPLET_APPJUMP_H_ 17 #define NN_APPLET_CTR_APPLET_APPJUMP_H_ 18 19 #include <nn/applet/CTR/applet_Parameters.h> 20 21 /* Please see man pages for details 22 23 */ 24 namespace nn { 25 namespace applet { 26 namespace CTR { 27 namespace detail { 28 29 // Call System Settings 30 Result JumpToInternetSetting(void); 31 Result JumpToParentalControls( AppletParentalControlsScene scene ); 32 Result JumpToDataManagement( AppletDataManagementScene scene ); 33 bool IsFromMset( AppletMsetScene* pScene=NULL ); 34 } 35 } 36 } 37 } 38 39 namespace nn { 40 namespace applet { 41 namespace CTR { 42 43 using namespace nn::applet::CTR; 44 45 /* Please see man pages for details 46 47 48 */ 49 /* Please see man pages for details 50 51 52 */ JumpToInternetSetting(void)53 inline Result JumpToInternetSetting(void) 54 { 55 return detail::JumpToInternetSetting(); 56 } 57 /* Please see man pages for details 58 59 60 61 */ 62 inline Result JumpToParentalControls( AppletParentalControlsScene scene=nn::applet::CTR::PARENTAL_CONTROLS_TOP ) 63 { 64 return detail::JumpToParentalControls( scene ); 65 } 66 /* Please see man pages for details 67 68 69 70 */ 71 inline Result JumpToDataManagement( AppletDataManagementScene scene=nn::applet::CTR::DATA_MANAGEMENT_STREETPASS ) 72 { 73 return detail::JumpToDataManagement( scene ); 74 } 75 76 /* Please see man pages for details 77 78 79 80 */ 81 inline bool IsFromMset( AppletMsetScene* pScene=NULL ) 82 { 83 return detail::IsFromMset( pScene ); 84 } 85 /* 86 87 */ 88 89 } 90 } 91 } 92 93 #endif // ifndef NN_APPLET_CTR_APPLET_APPJUMP_H_ 94