mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
NOTE: I included some changes of the forks of O1L and Dante38490 to my fork. However, a conflict appeared while merging their sources with the ones of DH. I had to resolve this conflict manually and push all the changes like a new commit, that's why there changes weren't recorded individually and (probably) won't appear at in the commits list. I am very sorry for this, I'll try to avoid this in the future. In order to preserve the authors of those commits, I write this list here: O1L: Dummy Modules (cellAudio, cellSaveData, and more)23ece01a0b784fc571b3Dante38490: Spotted and fixed an issue in git-version-gen.cmd44e8867125Regarding my changes: * New lv2 SysCalls implemented (and others improved) * SDATA unpacker implemented * Changed layout of sc_table
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/SysCalls/SysCalls.h"
|
|
#include "Emu/SysCalls/SC_FUNC.h"
|
|
|
|
void cellScreenshot_init();
|
|
Module cellScreenshot(0x004e, cellScreenshot_init);
|
|
|
|
// Return 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,
|
|
};
|
|
|
|
// Datatypes
|
|
struct CellScreenShotSetParam
|
|
{
|
|
const char *photo_title;
|
|
const char *game_title;
|
|
const char *game_comment;
|
|
};
|
|
|
|
// Functions
|
|
int cellScreenShotSetParameter() //const CellScreenShotSetParam *param
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellScreenshot);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellScreenShotSetOverlayImage() //const char *srcDir, const char *srcFile, s32 offset_x, s32 offset_y
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellScreenshot);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellScreenShotEnable()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellScreenshot);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellScreenShotDisable()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellScreenshot);
|
|
return CELL_OK;
|
|
}
|
|
|
|
void cellScreenshot_init()
|
|
{
|
|
cellScreenshot.AddFunc(0xd3ad63e4, cellScreenShotSetParameter);
|
|
cellScreenshot.AddFunc(0x7a9c2243, cellScreenShotSetOverlayImage);
|
|
cellScreenshot.AddFunc(0x9e33ab8f, cellScreenShotEnable);
|
|
cellScreenshot.AddFunc(0xfc6f4e74, cellScreenShotDisable);
|
|
} |