1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: FsSampleArchive.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: 46365 $ 14 *---------------------------------------------------------------------------*/ 15 16 #ifndef NN_SAMPLEDEMOS_FS_FSSAMPLEARCHIVE_H_ 17 #define NN_SAMPLEDEMOS_FS_FSSAMPLEARCHIVE_H_ 18 19 #include "FsSample.h" 20 21 22 // rom archive 23 bool FsSampleMountRom(); 24 bool FsSampleUnmountRom(); 25 26 // save data archive 27 void FsSampleCheckSaveData(); 28 bool FsSampleMountSaveData(); 29 bool FsSampleUnmountSaveData(); 30 31 // expanded save data archive 32 bool FsSampleMountExtSaveData(); 33 bool FsSampleUnmountExtSaveData(); 34 35 // SdmcWriteOnly archive 36 bool FsSampleMountSdmcWriteOnly(); 37 bool FsSampleUnmountSdmcWriteOnly(); 38 39 40 #endif // NN_SAMPLEDEMOS_FS_FSSAMPLEARCHIVE_H_ 41 42