ctr_Repair/trunk/SkipFirstLaunch/sysSharedExtSaveData.h
N2614 d6a207afd5 初回起動シーケンスの中でResultを破棄しているので、一部は確認するように
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
2012-02-24 07:45:56 +00:00

45 lines
1.3 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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_