mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
* Add sceNpScoreGetFriendsRanking and sceNpScoreGetFriendsRankingAsync functions * Add sceNpSnsFbGetLongAccessToken function * Add new functions for the sceNpTus module * Add new functions for the cellSailRec module * Stub cellCrossControllerInitialize * Add sceNpAuth* functions for the sceNp2 module * Remove unnecessary call to c_str() * Add missing module id "CELL_SYSMODULE_ADEC_AT3MULTI" * Add Turkish keyboard mapping constant * Add cellOskDialogExtRegisterKeyboardEventHookCallbackEx function * Update cellSubDisplay * Update cotire version to 1.7.10 * Replace cellSubdisplay by cellSubDisplay * Update cellSysutil.cpp with new functions stubbed
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
namespace vm { using namespace ps3; }
|
|
|
|
logs::channel cellCrossController("cellCrossController");
|
|
|
|
struct CellCrossControllerParam
|
|
{
|
|
vm::bcptr<char> pPackageFileName;
|
|
vm::bcptr<char> pSignatureFileName;
|
|
vm::bcptr<char> pIconFileName;
|
|
vm::bptr<void> option;
|
|
};
|
|
|
|
struct CellCrossControllerPackageInfo
|
|
{
|
|
vm::bcptr<char> pTitle;
|
|
vm::bcptr<char> pTitleId;
|
|
vm::bcptr<char> pAppVer;
|
|
};
|
|
|
|
using CellCrossControllerCallback = void(s32 status, s32 errorCode, vm::ptr<void> option, vm::ptr<void> userdata);
|
|
|
|
s32 cellCrossControllerInitialize(vm::cptr<CellCrossControllerParam> pParam, vm::cptr<CellCrossControllerPackageInfo> pPkgInfo, vm::ptr<CellCrossControllerCallback> cb, vm::ptr<void> userdata) // LittleBigPlanet 2 and 3
|
|
{
|
|
cellCrossController.todo("cellCrossControllerInitialize(pParam=*0x%x, pPkgInfo=*0x%x, cb=*0x%x, userdata=*0x%x)", pParam, pPkgInfo, cb, userdata);
|
|
return CELL_OK;
|
|
}
|
|
|
|
|
|
DECLARE(ppu_module_manager::cellCrossController)("cellCrossController", []()
|
|
{
|
|
REG_FUNC(cellCrossController, cellCrossControllerInitialize);
|
|
});
|