mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-02 22:59:59 +01:00
* cellSysmodule: Register libad modules Register libad_core, libad_async, libad_billboard_util * Misc sys_ss_get_console_open_psid (Called on Project Diva F 2nd), sys_ss_get_console_id Stub cellWebBrowserGetUsrdataOnGameExit for Professional Baseball Spirits 2015 Fix two logs on GcmSys
14 lines
249 B
C
14 lines
249 B
C
#pragma once
|
|
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/Cell/ErrorCodes.h"
|
|
|
|
struct CellSsOpenPSID
|
|
{
|
|
be_t<u64> high;
|
|
be_t<u64> low;
|
|
};
|
|
|
|
s32 sys_ss_get_console_id(vm::ps3::ptr<u8> buf);
|
|
s32 sys_ss_get_open_psid(vm::ps3::ptr<CellSsOpenPSID> ptr);
|