2014-06-02 19:27:24 +02:00
|
|
|
#if 0
|
2014-07-12 09:46:14 +02:00
|
|
|
#include "stdafx.h"
|
2013-09-28 04:36:57 +02:00
|
|
|
#include "Emu/SysCalls/SysCalls.h"
|
|
|
|
|
#include "Emu/SysCalls/SC_FUNC.h"
|
|
|
|
|
|
|
|
|
|
void cellPhotoExport_init();
|
|
|
|
|
Module cellPhotoExport(0xf029, cellPhotoExport_init);
|
|
|
|
|
|
|
|
|
|
// Return Codes
|
|
|
|
|
enum
|
|
|
|
|
{
|
2014-04-04 15:25:38 +02:00
|
|
|
CELL_PHOTO_EXPORT_UTIL_RET_OK = 0,
|
|
|
|
|
CELL_PHOTO_EXPORT_UTIL_RET_CANCEL = 1,
|
|
|
|
|
CELL_PHOTO_EXPORT_UTIL_ERROR_BUSY = 0x8002c201,
|
|
|
|
|
CELL_PHOTO_EXPORT_UTIL_ERROR_INTERNAL = 0x8002c202,
|
|
|
|
|
CELL_PHOTO_EXPORT_UTIL_ERROR_PARAM = 0x8002c203,
|
|
|
|
|
CELL_PHOTO_EXPORT_UTIL_ERROR_ACCESS_ERROR = 0x8002c204,
|
|
|
|
|
CELL_PHOTO_EXPORT_UTIL_ERROR_DB_INTERNAL = 0x8002c205,
|
|
|
|
|
CELL_PHOTO_EXPORT_UTIL_ERROR_DB_REGIST = 0x8002c206,
|
|
|
|
|
CELL_PHOTO_EXPORT_UTIL_ERROR_SET_META = 0x8002c207,
|
|
|
|
|
CELL_PHOTO_EXPORT_UTIL_ERROR_FLUSH_META = 0x8002c208,
|
|
|
|
|
CELL_PHOTO_EXPORT_UTIL_ERROR_MOVE = 0x8002c209,
|
|
|
|
|
CELL_PHOTO_EXPORT_UTIL_ERROR_INITIALIZE = 0x8002c20a,
|
2013-09-28 04:36:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int cellPhotoExportInitialize()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPhotoExport);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPhotoExportInitialize2()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPhotoExport);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPhotoExportFinalize()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPhotoExport);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPhotoExportFromFile()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPhotoExport);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellPhotoExportProgress()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellPhotoExport);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void cellPhotoExport_init()
|
|
|
|
|
{
|
|
|
|
|
cellPhotoExport.AddFunc(0x4357c77f, cellPhotoExportInitialize);
|
|
|
|
|
cellPhotoExport.AddFunc(0x08cbd8e1, cellPhotoExportInitialize2);
|
|
|
|
|
cellPhotoExport.AddFunc(0xed4a0148, cellPhotoExportFinalize);
|
|
|
|
|
cellPhotoExport.AddFunc(0x09ce84ac, cellPhotoExportFromFile);
|
|
|
|
|
//cellPhotoExport.AddFunc(, cellPhotoExportFromFileWithCopy);
|
|
|
|
|
cellPhotoExport.AddFunc(0xde509ead, cellPhotoExportProgress);
|
2014-06-02 19:27:24 +02:00
|
|
|
}
|
|
|
|
|
#endif
|