/*---------------------------------------------------------------------------* Project: Cafe File: sysapp_eshop.h Copyright (C) 2012 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 __SYSAPP_ESHOP_H__ #define __SYSAPP_ESHOP_H__ #include #ifdef __cplusplus extern "C" { #endif /*---------------------------------------------------------------------------*/ /** */ typedef struct SysEShopArgsIn { SysStandardArgsIn stdIn; const char * cp_Query; u32 querySize; } SysEShopArgsIn; /*---------------------------------------------------------------------------*/ /** * Switch to the eShop. * * @retval 0 Indicates success. * @retval <0 Indicates invalid arguments. */ s32 SYSSwitchToEShop( const SysEShopArgsIn * cp_Args ); //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ /** * Switch to the downloadable content page in the eShop. */ s32 SYSSwitchToEShopAocList( const SysStandardArgsIn * cp_ArgsIn ); /*---------------------------------------------------------------------------*/ /** * Switch to the subscription list page in the eShop. */ s32 SYSSwitchToEShopTicketList( const SysStandardArgsIn * cp_ArgsIn ); #ifdef __cplusplus } #endif #endif