mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 15:20:27 +01:00
- Multiple header files where missing #includes to other headers that where used in the header. Correct header was included in correct order in source files which caused everything to compile. - Added missing #includes so header files correctly include all their dependencies and fixes problems with IDEs being unable to parse headers correctly due to missing symbols
15 lines
321 B
C
15 lines
321 B
C
#pragma once
|
|
|
|
#include "Emu/Memory/vm_ptr.h"
|
|
#include "Emu/Cell/ErrorCodes.h"
|
|
|
|
struct CellSsOpenPSID
|
|
{
|
|
be_t<u64> high;
|
|
be_t<u64> low;
|
|
};
|
|
|
|
error_code sys_ss_random_number_generator(u32 arg1, vm::ptr<void> buf, u64 size);
|
|
s32 sys_ss_get_console_id(vm::ptr<u8> buf);
|
|
s32 sys_ss_get_open_psid(vm::ptr<CellSsOpenPSID> ptr);
|