mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-21 02:45:00 +00:00
added more PS4_SYSV_ABI codes
This commit is contained in:
parent
bb40fa9d65
commit
5706e1be1b
6 changed files with 92 additions and 61 deletions
|
@ -4,11 +4,13 @@
|
|||
namespace HLE::Libs::LibC {
|
||||
|
||||
void LibC_Register(SymbolsResolver* sym);
|
||||
|
||||
//functions
|
||||
static PS4_SYSV_ABI void init_env();
|
||||
static PS4_SYSV_ABI void exit(int code);
|
||||
static void catchReturnFromMain(int status);
|
||||
int __cxa_guard_acquire(u64* guard_object);
|
||||
int memcmp(const void* s1, const void* s2, size_t n);
|
||||
void* memcpy(void* dest, const void* src, size_t n);
|
||||
static PS4_SYSV_ABI void catchReturnFromMain(int status);
|
||||
int PS4_SYSV_ABI __cxa_guard_acquire(u64* guard_object);
|
||||
int PS4_SYSV_ABI memcmp(const void* s1, const void* s2, size_t n);
|
||||
void* PS4_SYSV_ABI memcpy(void* dest, const void* src, size_t n);
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue