mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
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);
|