mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-07 17:20:14 +01:00
* Restored deleted functions in FuncList.cpp * Fixed bugs in TRPLoader. * Implemented some sceNpTrophy syscalls. * Added sceNp headers (required for sceNpTrophy). * Updated .gitignore to ignore trophies. NOTE: Thanks to the new sceNpTrophy syscalls, RPCS3 can install the trophy contents in dev_hdd0/home/00000001/trophy/. Remember this is still on an experimental stage.
27 lines
336 B
C
27 lines
336 B
C
#pragma once
|
|
|
|
// Return Codes
|
|
enum
|
|
{
|
|
};
|
|
|
|
enum
|
|
{
|
|
SCE_NP_COMMUNICATION_SIGNATURE_SIZE = 160,
|
|
SCE_NET_NP_COMMUNICATION_PASSPHRASE_SIZE = 128,
|
|
};
|
|
|
|
// Structs
|
|
struct SceNpCommunicationId
|
|
{
|
|
char data[9];
|
|
char term;
|
|
u8 num;
|
|
char dummy;
|
|
};
|
|
|
|
struct SceNpCommunicationSignature
|
|
{
|
|
uint8_t data[SCE_NP_COMMUNICATION_SIGNATURE_SIZE];
|
|
};
|