mirror of
https://github.com/rvtr/ctr_Repair.git
synced 2025-10-31 13:51:08 -04:00
git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@655 385bec56-5757-e545-9c3a-d8741f4650f1
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
// IDB.cpp : コンソール アプリケーションのエントリ ポイントを定義します。
|
||
//
|
||
|
||
#ifndef __SYS_SHARED_EXT_SAVE_DATA_H_
|
||
#define __SYS_SHARED_EXT_SAVE_DATA_H_
|
||
|
||
#include <nn/types.h>
|
||
#include <nn.h>
|
||
|
||
namespace sys
|
||
{
|
||
class SharedExtSaveData
|
||
{
|
||
public:
|
||
|
||
enum SharedExtSaveDataType
|
||
{
|
||
eType_Photo = 0 ,
|
||
eType_Sound ,
|
||
eType_BossData ,
|
||
eType_Common ,
|
||
eType_Bashotorya ,
|
||
eType_Max
|
||
};
|
||
static const int cIDCount = eType_Max;
|
||
static const bit32 cIDs[cIDCount];
|
||
|
||
static const bit32 cPnoteMPPoto = 0xF0000001; // PNOTEのMP画像(写真)
|
||
static const bit32 cSnoteSound = 0xF0000002; // SNOTEのAACデータ(音声)
|
||
static const bit32 cNewsBossData = 0xF0000009; // おしらせBOSSデータ 7168KB 128 8 拡張セーブデータでした
|
||
static const bit32 cCommonData = 0xF000000B; // 汎用データ
|
||
static const bit32 cBashotorya = 0xF000000C; // バショトリャー
|
||
|
||
static nn::Result createData();
|
||
static nn::Result deleteData();
|
||
static void checkData();
|
||
static void refreshLimitSize();
|
||
|
||
// 領域の説明を返す
|
||
static const char *getInfoString( bit32 id );
|
||
};
|
||
}
|
||
|
||
#endif // ifndef __SYS_SHARED_EXT_SAVE_DATA_H_
|