mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 23:15:18 +00:00
hle: Add more missing functions
This commit is contained in:
parent
7625f7df11
commit
f30af3ccd2
24 changed files with 406 additions and 7 deletions
|
|
@ -713,6 +713,18 @@ s32 cellHttpInitCache()
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellHttpGetCacheInfo()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellHttp);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellHttpGetMemoryInfo()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellHttp);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
DECLARE(ppu_module_manager::cellHttp)("cellHttp", []()
|
||||
{
|
||||
REG_FUNC(cellHttp, cellHttpAuthCacheExport);
|
||||
|
|
@ -848,6 +860,8 @@ DECLARE(ppu_module_manager::cellHttp)("cellHttp", []()
|
|||
REG_FUNC(cellHttp, cellHttpFlushCache);
|
||||
REG_FUNC(cellHttp, cellHttpEndCache);
|
||||
REG_FUNC(cellHttp, cellHttpInitCache);
|
||||
REG_FUNC(cellHttp, cellHttpGetCacheInfo);
|
||||
REG_FUNC(cellHttp, cellHttpGetMemoryInfo);
|
||||
});
|
||||
|
||||
DECLARE(ppu_module_manager::cellHttps)("cellHttps", []()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue