mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Add sceNpTssGetDataNoLimit and sceNpTssGetDataNoLimitAsync functions
This commit is contained in:
parent
77354f0f90
commit
98ef419abd
1 changed files with 15 additions and 0 deletions
|
@ -368,6 +368,19 @@ s32 sceNpTssGetDataAsync()
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sceNpTssGetDataNoLimit()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sceNpTus);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sceNpTssGetDataNoLimitAsync()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sceNpTus);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
|
||||
DECLARE(ppu_module_manager::sceNpTus)("sceNpTus", []()
|
||||
{
|
||||
REG_FUNC(sceNpTus, sceNpTusInit);
|
||||
|
@ -430,4 +443,6 @@ DECLARE(ppu_module_manager::sceNpTus)("sceNpTus", []()
|
|||
REG_FUNC(sceNpTus, sceNpTusDeleteMultiSlotDataVUserAsync);
|
||||
REG_FUNC(sceNpTus, sceNpTssGetData);
|
||||
REG_FUNC(sceNpTus, sceNpTssGetDataAsync);
|
||||
REG_FUNC(sceNpTus, sceNpTssGetDataNoLimit);
|
||||
REG_FUNC(sceNpTus, sceNpTssGetDataNoLimitAsync);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue