mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-13 07:14:49 +00:00
Fixed remaining conflicts
Fixed remaining conflicts from O1L/rpcs3 (master): * Removed cellPhotoDecodeUtil.cpp, cellPhotoImportUtil.cpp and cellScreenShotUtility.cpp which are already present. * Updated cellSaveData.cpp to fix the conflicts.
This commit is contained in:
parent
45e58d882e
commit
2a5f353e1e
@ -1,72 +0,0 @@
|
|||||||
#include "stdafx.h"
|
|
||||||
#include "Emu/SysCalls/SysCalls.h"
|
|
||||||
#include "Emu/SysCalls/SC_FUNC.h"
|
|
||||||
|
|
||||||
void cellPhotoDecodeUtil_init ();
|
|
||||||
Module cellPhotoDecodeUtil ("cellPhotoDecodeUtil", cellPhotoDecodeUtil_init);
|
|
||||||
|
|
||||||
//Error codes
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
CELL_PHOTO_DECODE_RET_OK = 0,
|
|
||||||
CELL_PHOTO_DECODE_RET_CANCEL = 1,
|
|
||||||
CELL_PHOTO_DECODE_ERROR_BUSY = 0x8002c901,
|
|
||||||
CELL_PHOTO_DECODE_ERROR_INTERNAL = 0x8002c902,
|
|
||||||
CELL_PHOTO_DECODE_ERROR_PARAM = 0x8002c903,
|
|
||||||
CELL_PHOTO_DECODE_ERROR_ACCESS_ERROR = 0x8002c904,
|
|
||||||
CELL_PHOTO_DECODE_ERROR_INITIALIZE = 0x8002c905,
|
|
||||||
CELL_PHOTO_DECODE_ERROR_DECODE = 0x8002c906,
|
|
||||||
};
|
|
||||||
|
|
||||||
//datatypes
|
|
||||||
struct CellPhotoDecodeSetParam
|
|
||||||
{
|
|
||||||
void *dstBuffer;
|
|
||||||
u16 width;
|
|
||||||
u16 height;
|
|
||||||
void *reserved1;
|
|
||||||
void *reserved2;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct CellPhotoDecodeReturnParam
|
|
||||||
{
|
|
||||||
u16 width;
|
|
||||||
u16 height;
|
|
||||||
void *reserved1;
|
|
||||||
void *reserved2;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
int cellPhotoDecodeInitialize () //unsigned int version, sys_memory_container_t container1, sys_memory_container_t container2, CellPhotoDecodeFinishCallback funcFinish, void *userdata
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellPhotoDecodeUtil);
|
|
||||||
return CELL_PHOTO_DECODE_RET_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
int cellPhotoDecodeInitialize2 () //unsigned int version, sys_memory_container_t container2, CellPhotoDecodeFinishCallback funcFinish, void *userdata
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellPhotoDecodeUtil);
|
|
||||||
return CELL_PHOTO_DECODE_RET_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
int cellPhotoDecodeFinalize () //CellPhotoDecodeFinishCallback funcFinish, void *userdata
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellPhotoDecodeUtil);
|
|
||||||
return CELL_PHOTO_DECODE_RET_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
int cellPhotoDecodeFromFile () //const char *srcHddDir, const char *srcHddFile, CellPhotoDecodeSetParam *set_param, CellPhotoDecodeReturnParam *return_param
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellPhotoDecodeUtil);
|
|
||||||
return CELL_PHOTO_DECODE_RET_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
void ( *CellPhotoDecodeFinishCallback) (); //int result, void *userdata
|
|
||||||
|
|
||||||
void cellPhotoDecodeUtil_init ()
|
|
||||||
{
|
|
||||||
cellPhotoDecodeUtil.AddFunc (0x0f424ecb, cellPhotoDecodeInitialize2);
|
|
||||||
cellPhotoDecodeUtil.AddFunc (0x28b22e44, cellPhotoDecodeFromFile);
|
|
||||||
cellPhotoDecodeUtil.AddFunc (0x596f0a56, cellPhotoDecodeInitialize);
|
|
||||||
cellPhotoDecodeUtil.AddFunc (0xad7d8f38, cellPhotoDecodeFinalize);
|
|
||||||
}
|
|
@ -1,68 +0,0 @@
|
|||||||
#include "stdafx.h"
|
|
||||||
#include "Emu/SysCalls/SysCalls.h"
|
|
||||||
#include "Emu/SysCalls/SC_FUNC.h"
|
|
||||||
|
|
||||||
void cellPhotoImportUtil_init ();
|
|
||||||
Module cellPhotoImportUtil ("cellPhotoImportUtil", cellPhotoImportUtil_init);
|
|
||||||
|
|
||||||
//Error codes
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
CELL_PHOTO_IMPORT_RET_OK = 0,
|
|
||||||
CELL_PHOTO_IMPORT_RET_CANCEL = 1,
|
|
||||||
CELL_PHOTO_IMPORT_ERROR_BUSY = 0x8002c701,
|
|
||||||
CELL_PHOTO_IMPORT_ERROR_INTERNAL = 0x8002c702,
|
|
||||||
CELL_PHOTO_IMPORT_ERROR_PARAM = 0x8002c703,
|
|
||||||
CELL_PHOTO_IMPORT_ERROR_ACCESS_ERROR = 0x8002c704,
|
|
||||||
CELL_PHOTO_IMPORT_ERROR_COPY = 0x8002c705,
|
|
||||||
CELL_PHOTO_IMPORT_ERROR_INITIALIZE = 0x8002c706,
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
//datatyps
|
|
||||||
|
|
||||||
struct CellPhotoImportFileDataSub
|
|
||||||
{
|
|
||||||
int width;
|
|
||||||
int height;
|
|
||||||
//CellPhotoImportFormatType format;
|
|
||||||
//CellPhotoImportTexRot rotate;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct CellPhotoImportFileData
|
|
||||||
{
|
|
||||||
char dstFileName; //[CELL_FS_MAX_FS_FILE_NAME_LENGTH];
|
|
||||||
char photo_title; //[CELL_PHOTO_IMPORT_PHOTO_TITLE_MAX_LENGTH*3];
|
|
||||||
char game_title; //[CELL_PHOTO_IMPORT_GAME_TITLE_MAX_SIZE];
|
|
||||||
char game_comment; //[CELL_PHOTO_IMPORT_GAME_COMMENT_MAX_SIZE];
|
|
||||||
CellPhotoImportFileDataSub* data_sub;
|
|
||||||
void *reserved;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct CellPhotoImportSetParam
|
|
||||||
{
|
|
||||||
unsigned int fileSizeMax;
|
|
||||||
void *reserved1;
|
|
||||||
void *reserved2;
|
|
||||||
};
|
|
||||||
|
|
||||||
//import API
|
|
||||||
|
|
||||||
int cellPhotoImport () //unsigned int version, const char *dstHddPath, CellPhotoImportSetParam *param, sys_memory_container_t container, CellPhotoImportFinishCallback funcFinish, void *userdata
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellPhotoImportUtil);
|
|
||||||
return CELL_PHOTO_IMPORT_RET_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
int cellPhotoImport2 () //unsigned int version, const char *dstHddPath, CellPhotoImportSetParam *param, CellPhotoImportFinishCallback funcFinish, void *userdata
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellPhotoImportUtil);
|
|
||||||
return CELL_PHOTO_IMPORT_RET_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void cellPhotoImportUtil_init ()
|
|
||||||
{
|
|
||||||
cellPhotoImportUtil.AddFunc (0x0783bce0, cellPhotoImport);
|
|
||||||
cellPhotoImportUtil.AddFunc (0x1ab8df55, cellPhotoImport2);
|
|
||||||
}
|
|
@ -2,18 +2,10 @@
|
|||||||
#include "Emu/SysCalls/SysCalls.h"
|
#include "Emu/SysCalls/SysCalls.h"
|
||||||
#include "Emu/SysCalls/SC_FUNC.h"
|
#include "Emu/SysCalls/SC_FUNC.h"
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
void cellSaveData_init ();
|
|
||||||
Module cellSaveData ("cellSaveData", cellSaveData_init);
|
|
||||||
|
|
||||||
//Error codes
|
|
||||||
|
|
||||||
=======
|
|
||||||
void cellSaveData_init();
|
void cellSaveData_init();
|
||||||
Module cellSaveData("cellSaveData", cellSaveData_init);
|
Module cellSaveData("cellSaveData", cellSaveData_init);
|
||||||
|
|
||||||
// Error codes
|
// Error codes
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
CELL_SAVEDATA_RET_OK = 0,
|
CELL_SAVEDATA_RET_OK = 0,
|
||||||
@ -29,138 +21,68 @@ enum
|
|||||||
CELL_SAVEDATA_ERROR_NOUSER,
|
CELL_SAVEDATA_ERROR_NOUSER,
|
||||||
};
|
};
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
//datatyps
|
|
||||||
|
|
||||||
struct CellSaveDataSetList
|
|
||||||
{
|
|
||||||
unsigned int sortType;
|
|
||||||
unsigned int sortOrder;
|
|
||||||
char *dirNamePrefix;
|
|
||||||
void *reserved;
|
|
||||||
=======
|
|
||||||
// Datatypes
|
// Datatypes
|
||||||
struct CellSaveDataSetList
|
struct CellSaveDataSetList
|
||||||
{
|
{
|
||||||
unsigned int sortType;
|
unsigned int sortType;
|
||||||
unsigned int sortOrder;
|
unsigned int sortOrder;
|
||||||
char *dirNamePrefix;
|
char *dirNamePrefix;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataSetBuf
|
struct CellSaveDataSetBuf
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
unsigned int dirListMax;
|
|
||||||
unsigned int fileListMax;
|
|
||||||
unsigned int reserved[6];
|
|
||||||
unsigned int bufSize;
|
|
||||||
void *buf;
|
|
||||||
=======
|
|
||||||
unsigned int dirListMax;
|
unsigned int dirListMax;
|
||||||
unsigned int fileListMax;
|
unsigned int fileListMax;
|
||||||
unsigned int reserved[6];
|
unsigned int reserved[6];
|
||||||
unsigned int bufSize;
|
unsigned int bufSize;
|
||||||
void *buf;
|
void *buf;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataNewDataIcon
|
struct CellSaveDataNewDataIcon
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
char *title;
|
|
||||||
unsigned int iconBufSize;
|
|
||||||
void *iconBuf;
|
|
||||||
void *reserved;
|
|
||||||
=======
|
|
||||||
char *title;
|
char *title;
|
||||||
unsigned int iconBufSize;
|
unsigned int iconBufSize;
|
||||||
void *iconBuf;
|
void *iconBuf;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataListNewData
|
struct CellSaveDataListNewData
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
unsigned int iconPosition;
|
|
||||||
char *dirName;
|
|
||||||
CellSaveDataNewDataIcon *icon;
|
|
||||||
void *reserved;
|
|
||||||
=======
|
|
||||||
unsigned int iconPosition;
|
unsigned int iconPosition;
|
||||||
char *dirName;
|
char *dirName;
|
||||||
CellSaveDataNewDataIcon *icon;
|
CellSaveDataNewDataIcon *icon;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataDirList
|
struct CellSaveDataDirList
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
char dirName; //[CELL_SAVEDATA_DIRNAME_SIZE];
|
|
||||||
char listParam; //[CELL_SAVEDATA_SYSP_LPARAM_SIZE];
|
|
||||||
char reserved[8];
|
|
||||||
=======
|
|
||||||
char dirName; //[CELL_SAVEDATA_DIRNAME_SIZE];
|
char dirName; //[CELL_SAVEDATA_DIRNAME_SIZE];
|
||||||
char listParam; //[CELL_SAVEDATA_SYSP_LPARAM_SIZE];
|
char listParam; //[CELL_SAVEDATA_SYSP_LPARAM_SIZE];
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataListGet
|
struct CellSaveDataListGet
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
unsigned int dirNum;
|
|
||||||
unsigned int dirListNum;
|
|
||||||
CellSaveDataDirList *dirList;
|
|
||||||
char reserved[64];
|
|
||||||
=======
|
|
||||||
unsigned int dirNum;
|
unsigned int dirNum;
|
||||||
unsigned int dirListNum;
|
unsigned int dirListNum;
|
||||||
CellSaveDataDirList *dirList;
|
CellSaveDataDirList *dirList;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataListSet
|
struct CellSaveDataListSet
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
unsigned int focusPosition;
|
|
||||||
char *focusDirName;
|
|
||||||
unsigned int fixedListNum;
|
|
||||||
CellSaveDataDirList *fixedList;
|
|
||||||
CellSaveDataListNewData *newData;
|
|
||||||
void *reserved;
|
|
||||||
=======
|
|
||||||
unsigned int focusPosition;
|
unsigned int focusPosition;
|
||||||
char *focusDirName;
|
char *focusDirName;
|
||||||
unsigned int fixedListNum;
|
unsigned int fixedListNum;
|
||||||
CellSaveDataDirList *fixedList;
|
CellSaveDataDirList *fixedList;
|
||||||
CellSaveDataListNewData *newData;
|
CellSaveDataListNewData *newData;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataFixedSet
|
struct CellSaveDataFixedSet
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
char *dirName;
|
|
||||||
CellSaveDataNewDataIcon *newIcon;
|
|
||||||
unsigned int option;
|
|
||||||
=======
|
|
||||||
char *dirName;
|
char *dirName;
|
||||||
CellSaveDataNewDataIcon *newIcon;
|
CellSaveDataNewDataIcon *newIcon;
|
||||||
unsigned int option;
|
unsigned int option;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataSystemFileParam
|
struct CellSaveDataSystemFileParam
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
char title; //[CELL_SAVEDATA_SYSP_TITLE_SIZE];
|
|
||||||
char subTitle; //[CELL_SAVEDATA_SYSP_SUBTITLE_SIZE];
|
|
||||||
char detail; //[CELL_SAVEDATA_SYSP_DETAIL_SIZE];
|
|
||||||
unsigned int attribute;
|
|
||||||
char reserved2[4];
|
|
||||||
char listParam; //[CELL_SAVEDATA_SYSP_LPARAM_SIZE];
|
|
||||||
char reserved[256];
|
|
||||||
=======
|
|
||||||
char title; //[CELL_SAVEDATA_SYSP_TITLE_SIZE];
|
char title; //[CELL_SAVEDATA_SYSP_TITLE_SIZE];
|
||||||
char subTitle; //[CELL_SAVEDATA_SYSP_SUBTITLE_SIZE];
|
char subTitle; //[CELL_SAVEDATA_SYSP_SUBTITLE_SIZE];
|
||||||
char detail; //[CELL_SAVEDATA_SYSP_DETAIL_SIZE];
|
char detail; //[CELL_SAVEDATA_SYSP_DETAIL_SIZE];
|
||||||
@ -168,36 +90,18 @@ char reserved[256];
|
|||||||
char reserved2[4];
|
char reserved2[4];
|
||||||
char listParam; //[CELL_SAVEDATA_SYSP_LPARAM_SIZE];
|
char listParam; //[CELL_SAVEDATA_SYSP_LPARAM_SIZE];
|
||||||
char reserved[256];
|
char reserved[256];
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataDirStat
|
struct CellSaveDataDirStat
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
s64 st_atime;
|
|
||||||
s64 st_mtime;
|
|
||||||
s64 st_ctime;
|
|
||||||
char dirName; //[CELL_SAVEDATA_DIRNAME_SIZE];
|
|
||||||
=======
|
|
||||||
s64 st_atime;
|
s64 st_atime;
|
||||||
s64 st_mtime;
|
s64 st_mtime;
|
||||||
s64 st_ctime;
|
s64 st_ctime;
|
||||||
char dirName; //[CELL_SAVEDATA_DIRNAME_SIZE];
|
char dirName; //[CELL_SAVEDATA_DIRNAME_SIZE];
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataFileStat
|
struct CellSaveDataFileStat
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
unsigned int fileType;
|
|
||||||
char reserved1[4];
|
|
||||||
u64 st_size;
|
|
||||||
s64 st_atime;
|
|
||||||
s64 st_mtime;
|
|
||||||
s64 st_ctime;
|
|
||||||
char fileName; //[CELL_SAVEDATA_FILENAME_SIZE];
|
|
||||||
char reserved2[3];
|
|
||||||
=======
|
|
||||||
unsigned int fileType;
|
unsigned int fileType;
|
||||||
char reserved1[4];
|
char reserved1[4];
|
||||||
u64 st_size;
|
u64 st_size;
|
||||||
@ -206,24 +110,10 @@ char reserved2[3];
|
|||||||
s64 st_ctime;
|
s64 st_ctime;
|
||||||
char fileName; //[CELL_SAVEDATA_FILENAME_SIZE];
|
char fileName; //[CELL_SAVEDATA_FILENAME_SIZE];
|
||||||
char reserved2[3];
|
char reserved2[3];
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataStatGet
|
struct CellSaveDataStatGet
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
int hddFreeSizeKB;
|
|
||||||
unsigned int isNewData;
|
|
||||||
CellSaveDataDirStat dir;
|
|
||||||
CellSaveDataSystemFileParam getParam;
|
|
||||||
unsigned int bind;
|
|
||||||
int sizeKB;
|
|
||||||
int sysSizeKB;
|
|
||||||
unsigned int fileNum;
|
|
||||||
unsigned int fileListNum;
|
|
||||||
CellSaveDataFileStat *fileList;
|
|
||||||
char reserved[64];
|
|
||||||
=======
|
|
||||||
int hddFreeSizeKB;
|
int hddFreeSizeKB;
|
||||||
unsigned int isNewData;
|
unsigned int isNewData;
|
||||||
CellSaveDataDirStat dir;
|
CellSaveDataDirStat dir;
|
||||||
@ -234,63 +124,31 @@ char reserved[64];
|
|||||||
unsigned int fileNum;
|
unsigned int fileNum;
|
||||||
unsigned int fileListNum;
|
unsigned int fileListNum;
|
||||||
CellSaveDataFileStat *fileList;
|
CellSaveDataFileStat *fileList;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataAutoIndicator
|
struct CellSaveDataAutoIndicator
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
unsigned int dispPosition;
|
|
||||||
unsigned int dispMode;
|
|
||||||
char *dispMsg;
|
|
||||||
unsigned int picBufSize;
|
|
||||||
void *picBuf;
|
|
||||||
void *reserved;
|
|
||||||
=======
|
|
||||||
unsigned int dispPosition;
|
unsigned int dispPosition;
|
||||||
unsigned int dispMode;
|
unsigned int dispMode;
|
||||||
char *dispMsg;
|
char *dispMsg;
|
||||||
unsigned int picBufSize;
|
unsigned int picBufSize;
|
||||||
void *picBuf;
|
void *picBuf;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataStatSet
|
struct CellSaveDataStatSet
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
CellSaveDataSystemFileParam *setParam;
|
|
||||||
unsigned int reCreateMode;
|
|
||||||
CellSaveDataAutoIndicator *indicator;
|
|
||||||
=======
|
|
||||||
CellSaveDataSystemFileParam *setParam;
|
CellSaveDataSystemFileParam *setParam;
|
||||||
unsigned int reCreateMode;
|
unsigned int reCreateMode;
|
||||||
CellSaveDataAutoIndicator *indicator;
|
CellSaveDataAutoIndicator *indicator;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataFileGet
|
struct CellSaveDataFileGet
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
unsigned int excSize;
|
|
||||||
char reserved[64];
|
|
||||||
=======
|
|
||||||
unsigned int excSize;
|
unsigned int excSize;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataFileSet
|
struct CellSaveDataFileSet
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
unsigned int fileOperation;
|
|
||||||
void *reserved;
|
|
||||||
unsigned int fileType;
|
|
||||||
unsigned char secureFileId; //[CELL_SAVEDATA_SECUREFILEID_SIZE];
|
|
||||||
char *fileName;
|
|
||||||
unsigned int fileOffset;
|
|
||||||
unsigned int fileSize;
|
|
||||||
unsigned int fileBufSize;
|
|
||||||
void *fileBuf;
|
|
||||||
=======
|
|
||||||
unsigned int fileOperation;
|
unsigned int fileOperation;
|
||||||
void *reserved;
|
void *reserved;
|
||||||
unsigned int fileType;
|
unsigned int fileType;
|
||||||
@ -300,40 +158,19 @@ void *fileBuf;
|
|||||||
unsigned int fileSize;
|
unsigned int fileSize;
|
||||||
unsigned int fileBufSize;
|
unsigned int fileBufSize;
|
||||||
void *fileBuf;
|
void *fileBuf;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataCBResult
|
struct CellSaveDataCBResult
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
int result;
|
|
||||||
unsigned int progressBarInc;
|
|
||||||
int errNeedSizeKB;
|
|
||||||
char *invalidMsg;
|
|
||||||
void *userdata;
|
|
||||||
=======
|
|
||||||
int result;
|
int result;
|
||||||
unsigned int progressBarInc;
|
unsigned int progressBarInc;
|
||||||
int errNeedSizeKB;
|
int errNeedSizeKB;
|
||||||
char *invalidMsg;
|
char *invalidMsg;
|
||||||
void *userdata;
|
void *userdata;
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CellSaveDataDoneGet
|
struct CellSaveDataDoneGet
|
||||||
{
|
{
|
||||||
<<<<<<< HEAD
|
|
||||||
int excResult;
|
|
||||||
char dirName; //[CELL_SAVEDATA_DIRNAME_SIZE];
|
|
||||||
int sizeKB;
|
|
||||||
int hddFreeSizeKB;
|
|
||||||
char reserved[64];
|
|
||||||
};
|
|
||||||
|
|
||||||
//functions
|
|
||||||
|
|
||||||
int cellSaveDataListSave2 () //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int excResult;
|
int excResult;
|
||||||
char dirName; //[CELL_SAVEDATA_DIRNAME_SIZE];
|
char dirName; //[CELL_SAVEDATA_DIRNAME_SIZE];
|
||||||
int sizeKB;
|
int sizeKB;
|
||||||
@ -342,368 +179,195 @@ int cellSaveDataListSave2 () //unsigned int version, CellSaveDataSetList *setLis
|
|||||||
|
|
||||||
// Functions
|
// Functions
|
||||||
int cellSaveDataListSave2() //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataListSave2() //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataListLoad2 () //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataListLoad2() //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataListLoad2() //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataFixedSave2 () //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile,sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataFixedSave2() //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile,sys_memory_container_t container, void *userdata
|
int cellSaveDataFixedSave2() //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile,sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataFixedLoad2 () //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataFixedLoad2() //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataFixedLoad2() //unsigned int version, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataAutoSave2 () //unsigned int version, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataAutoSave2() //unsigned int version, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataAutoSave2() //unsigned int version, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataAutoLoad2 () //unsigned int version, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataAutoLoad2() //unsigned int version, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataAutoLoad2() //unsigned int version, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataListAutoSave () //unsigned int version, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile,sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataListAutoSave() //unsigned int version, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile,sys_memory_container_t container, void *userdata
|
int cellSaveDataListAutoSave() //unsigned int version, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile,sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataListAutoLoad () //unsigned int version, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataListAutoLoad() //unsigned int version, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataListAutoLoad() //unsigned int version, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataDelete2 () //sys_memory_container_t container
|
|
||||||
=======
|
|
||||||
int cellSaveDataDelete2() //sys_memory_container_t container
|
int cellSaveDataDelete2() //sys_memory_container_t container
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_CANCEL;
|
return CELL_SAVEDATA_RET_CANCEL;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataFixedDelete () //CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataFixedDelete() //CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
int cellSaveDataFixedDelete() //CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserListSave () //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserListSave() //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserListSave() //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserListLoad () //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserListLoad() //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserListLoad() //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserFixedSave () //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserFixedSave() //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserFixedSave() //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserFixedLoad () //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserFixedLoad() //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserFixedLoad() //unsigned int version, CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserAutoSave () //unsigned int version, CellSysutilUserId userId, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserAutoSave() //unsigned int version, CellSysutilUserId userId, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserAutoSave() //unsigned int version, CellSysutilUserId userId, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserAutoLoad () //unsigned int version, CellSysutilUserId userId, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserAutoLoad() //unsigned int version, CellSysutilUserId userId, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserAutoLoad() //unsigned int version, CellSysutilUserId userId, const char *dirName, unsigned int errDialog, CellSaveDataSetBuf *setBuf, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserListAutoSave () //unsigned int version, CellSysutilUserId userId, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserListAutoSave() //unsigned int version, CellSysutilUserId userId, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserListAutoSave() //unsigned int version, CellSysutilUserId userId, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserListAutoLoad () //unsigned int version, CellSysutilUserId userId, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserListAutoLoad() //unsigned int version, CellSysutilUserId userId, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserListAutoLoad() //unsigned int version, CellSysutilUserId userId, unsigned int errDialog, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataStatCallback funcStat, CellSaveDataFileCallback funcFile, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserFixedDelete () //CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserFixedDelete() //CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserFixedDelete() //CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataFixedCallback funcFixed, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
//void cellSaveDataEnableOverlay (); //int enable
|
|
||||||
|
|
||||||
|
|
||||||
//Functions (Extensions)
|
|
||||||
|
|
||||||
int cellSaveDataListDelete () //CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
//void cellSaveDataEnableOverlay(); //int enable
|
//void cellSaveDataEnableOverlay(); //int enable
|
||||||
|
|
||||||
|
|
||||||
// Functions (Extensions)
|
// Functions (Extensions)
|
||||||
int cellSaveDataListDelete() //CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
int cellSaveDataListDelete() //CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataListImport () //CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataListImport() //CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
int cellSaveDataListImport() //CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataListExport () //CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataListExport() //CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
int cellSaveDataListExport() //CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataFixedImport () //const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataFixedImport() //const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
int cellSaveDataFixedImport() //const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataFixedExport () //const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataFixedExport() //const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
int cellSaveDataFixedExport() //const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataGetListItem () //const char *dirName, CellSaveDataDirStat *dir, CellSaveDataSystemFileParam *sysFileParam, unsigned int *bind, int *sizeKB
|
|
||||||
=======
|
|
||||||
int cellSaveDataGetListItem() //const char *dirName, CellSaveDataDirStat *dir, CellSaveDataSystemFileParam *sysFileParam, unsigned int *bind, int *sizeKB
|
int cellSaveDataGetListItem() //const char *dirName, CellSaveDataDirStat *dir, CellSaveDataSystemFileParam *sysFileParam, unsigned int *bind, int *sizeKB
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserListDelete () //CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataDoneCallback funcDone,sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserListDelete() //CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataDoneCallback funcDone,sys_memory_container_t container, void *userdata
|
int cellSaveDataUserListDelete() //CellSysutilUserId userId, CellSaveDataSetList *setList, CellSaveDataSetBuf *setBuf, CellSaveDataListCallback funcList, CellSaveDataDoneCallback funcDone,sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserListImport () //CellSysutilUserId userId, CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserListImport() //CellSysutilUserId userId, CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserListImport() //CellSysutilUserId userId, CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserListExport () //CellSysutilUserId userId, CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserListExport() //CellSysutilUserId userId, CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserListExport() //CellSysutilUserId userId, CellSaveDataSetList *setList, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserFixedImport () //CellSysutilUserId userId, const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserFixedImport() //CellSysutilUserId userId, const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserFixedImport() //CellSysutilUserId userId, const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserFixedExport () //CellSysutilUserId userId, const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserFixedExport() //CellSysutilUserId userId, const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
int cellSaveDataUserFixedExport() //CellSysutilUserId userId, const char *dirName, unsigned int maxSizeKB, CellSaveDataDoneCallback funcDone, sys_memory_container_t container, void *userdata
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
int cellSaveDataUserGetListItem () //CellSysutilUserId userId, const char *dirName, CellSaveDataDirStat *dir, CellSaveDataSystemFileParam *sysFileParam, unsigned int *bind, int *sizeKB
|
|
||||||
=======
|
|
||||||
int cellSaveDataUserGetListItem() //CellSysutilUserId userId, const char *dirName, CellSaveDataDirStat *dir, CellSaveDataSystemFileParam *sysFileParam, unsigned int *bind, int *sizeKB
|
int cellSaveDataUserGetListItem() //CellSysutilUserId userId, const char *dirName, CellSaveDataDirStat *dir, CellSaveDataSystemFileParam *sysFileParam, unsigned int *bind, int *sizeKB
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSaveData);
|
UNIMPLEMENTED_FUNC(cellSaveData);
|
||||||
return CELL_SAVEDATA_RET_OK;
|
return CELL_SAVEDATA_RET_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
|
|
||||||
//Callback Functions
|
|
||||||
|
|
||||||
void (*CellSaveDataFixedCallback) (); //CellSaveDataCBResult *cbResult, CellSaveDataListGet *get, CellSaveDataFixedSet *set
|
|
||||||
|
|
||||||
void (*CellSaveDataListCallback) (); //CellSaveDataCBResult *cbResult, CellSaveDataListGet *get, CellSaveDataListSet *set
|
|
||||||
|
|
||||||
void (*CellSaveDataStatCallback) (); //CellSaveDataCBResult *cbResult, CellSaveDataStatGet *get, CellSaveDataStatSet *set
|
|
||||||
|
|
||||||
void (*CellSaveDataFileCallback) (); //CellSaveDataCBResult *cbResult, CellSaveDataFileGet *get, CellSaveDataFileSet *set
|
|
||||||
|
|
||||||
void (*CellSaveDataDoneCallback) (); //CellSaveDataCBResult *cbResult, CellSaveDataDoneGet *get
|
|
||||||
|
|
||||||
|
|
||||||
void cellSaveData_init ()
|
|
||||||
{
|
|
||||||
cellSaveData.AddFunc (0x04c06fc2, cellSaveDataGetListItem);
|
|
||||||
cellSaveData.AddFunc (0x273d116a, cellSaveDataUserListExport);
|
|
||||||
cellSaveData.AddFunc (0x27cb8bc2, cellSaveDataListDelete);
|
|
||||||
cellSaveData.AddFunc (0x39d6ee43, cellSaveDataUserListImport);
|
|
||||||
cellSaveData.AddFunc (0x46a2d878, cellSaveDataFixedExport);
|
|
||||||
cellSaveData.AddFunc (0x491cc554, cellSaveDataListExport);
|
|
||||||
cellSaveData.AddFunc (0x52541151, cellSaveDataFixedImport);
|
|
||||||
cellSaveData.AddFunc (0x529231b0, cellSaveDataUserFixedImport);
|
|
||||||
cellSaveData.AddFunc (0x6b4e0de6, cellSaveDataListImport);
|
|
||||||
cellSaveData.AddFunc (0x7048a9ba, cellSaveDataUserListDelete);
|
|
||||||
cellSaveData.AddFunc (0x95ae2cde, cellSaveDataUserFixedExport);
|
|
||||||
cellSaveData.AddFunc (0xf6482036, cellSaveDataUserGetListItem);
|
|
||||||
cellSaveData.AddFunc (0x2de0d663, cellSaveDataListSave2);
|
|
||||||
cellSaveData.AddFunc (0x1dfbfdd6, cellSaveDataListLoad2);
|
|
||||||
cellSaveData.AddFunc (0x2aae9ef5, cellSaveDataFixedSave2);
|
|
||||||
cellSaveData.AddFunc (0x2a8eada2, cellSaveDataFixedLoad2);
|
|
||||||
cellSaveData.AddFunc (0x8b7ed64b, cellSaveDataAutoSave2);
|
|
||||||
cellSaveData.AddFunc (0xfbd5c856, cellSaveDataAutoLoad2);
|
|
||||||
cellSaveData.AddFunc (0x4dd03a4e, cellSaveDataListAutoSave);
|
|
||||||
cellSaveData.AddFunc (0x21425307, cellSaveDataListAutoLoad);
|
|
||||||
cellSaveData.AddFunc (0xedadd797, cellSaveDataDelete2);
|
|
||||||
cellSaveData.AddFunc (0x0f03cfb0, cellSaveDataUserListSave);
|
|
||||||
cellSaveData.AddFunc (0x39dd8425, cellSaveDataUserListLoad);
|
|
||||||
cellSaveData.AddFunc (0x40b34847, cellSaveDataUserFixedSave);
|
|
||||||
cellSaveData.AddFunc (0x6e7264ed, cellSaveDataUserFixedLoad);
|
|
||||||
cellSaveData.AddFunc (0x52aac4fa, cellSaveDataUserAutoSave);
|
|
||||||
cellSaveData.AddFunc (0xcdc6aefd, cellSaveDataUserAutoLoad);
|
|
||||||
cellSaveData.AddFunc (0x0e091c36, cellSaveDataUserListAutoSave);
|
|
||||||
//cellSaveData.AddFunc (0xe7fa820b, cellSaveDataEnableOverlay);
|
|
||||||
=======
|
|
||||||
// Callback Functions
|
// Callback Functions
|
||||||
void (*CellSaveDataFixedCallback)(); //CellSaveDataCBResult *cbResult, CellSaveDataListGet *get, CellSaveDataFixedSet *set
|
void (*CellSaveDataFixedCallback)(); //CellSaveDataCBResult *cbResult, CellSaveDataListGet *get, CellSaveDataFixedSet *set
|
||||||
|
|
||||||
@ -746,5 +410,4 @@ void cellSaveData_init()
|
|||||||
cellSaveData.AddFunc(0xcdc6aefd, cellSaveDataUserAutoLoad);
|
cellSaveData.AddFunc(0xcdc6aefd, cellSaveDataUserAutoLoad);
|
||||||
cellSaveData.AddFunc(0x0e091c36, cellSaveDataUserListAutoSave);
|
cellSaveData.AddFunc(0x0e091c36, cellSaveDataUserListAutoSave);
|
||||||
//cellSaveData.AddFunc(0xe7fa820b, cellSaveDataEnableOverlay);
|
//cellSaveData.AddFunc(0xe7fa820b, cellSaveDataEnableOverlay);
|
||||||
>>>>>>> 3dd9683b472b89358a697210798c89df5b0e5baa
|
|
||||||
}
|
}
|
@ -1,59 +0,0 @@
|
|||||||
#include "stdafx.h"
|
|
||||||
#include "Emu/SysCalls/SysCalls.h"
|
|
||||||
#include "Emu/SysCalls/SC_FUNC.h"
|
|
||||||
|
|
||||||
void cellScreenShotUtility_init ();
|
|
||||||
Module cellScreenShotUtility ("cellScreenShotUtility", cellScreenShotUtility_init);
|
|
||||||
|
|
||||||
//Error codes
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
CELL_SCREENSHOT_OK = 0x0,
|
|
||||||
CELL_SCREENSHOT_ERROR_INTERNAL = 0x8002d101,
|
|
||||||
CELL_SCREENSHOT_ERROR_PARAM = 0x8002d102,
|
|
||||||
CELL_SCREENSHOT_ERROR_DECODE = 0x8002d103,
|
|
||||||
CELL_SCREENSHOT_ERROR_NOSPACE = 0x8002d104,
|
|
||||||
CELL_SCREENSHOT_ERROR_UNSUPPORTED_COLOR_FORMAT = 0x8002d105,
|
|
||||||
};
|
|
||||||
|
|
||||||
//datatyps
|
|
||||||
struct CellScreenShotSetParam
|
|
||||||
{
|
|
||||||
const char *photo_title;
|
|
||||||
const char *game_title;
|
|
||||||
const char *game_comment;
|
|
||||||
void* reserved;
|
|
||||||
};
|
|
||||||
|
|
||||||
int cellScreenShotSetParameter () //const CellScreenShotSetParam *param
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellScreenShotUtility);
|
|
||||||
return CELL_SCREENSHOT_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
int cellScreenShotSetOverlayImage() //const char *srcDir, const char *srcFile, s32 offset_x, s32 offset_y
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellScreenShotUtility);
|
|
||||||
return CELL_SCREENSHOT_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
int cellScreenShotEnable (void)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellScreenShotUtility);
|
|
||||||
return CELL_SCREENSHOT_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
int cellScreenShotDisable (void)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED_FUNC(cellScreenShotUtility);
|
|
||||||
return CELL_SCREENSHOT_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void cellScreenShotUtility_init ()
|
|
||||||
{
|
|
||||||
cellScreenShotUtility.AddFunc (0x9e33ab8f, cellScreenShotEnable);
|
|
||||||
cellScreenShotUtility.AddFunc (0xd3ad63e4, cellScreenShotSetParameter);
|
|
||||||
cellScreenShotUtility.AddFunc (0xfc6f4e74, cellScreenShotDisable);
|
|
||||||
cellScreenShotUtility.AddFunc (0x7a9c2243, cellScreenShotSetOverlayImage);
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user