hle: Add some missing functions

0xBA50BC23 => cellCelpEncOpenExt
0x1AC58D11 => cellHttpFlushCache
0xA39FE9DC => cellHttpEndCache
0xB4FA3111 => cellHttpInitCache
0x4A18A89E => sceNpMatchingSetRoomInfoNoLimit
0xB020684E => sceNpMatchingGetRoomInfoNoLimit
This commit is contained in:
scribam 2019-04-05 08:45:49 +02:00 committed by Ani
parent d7ad991b7e
commit 8dbf2638e2
3 changed files with 43 additions and 3 deletions

View file

@ -695,6 +695,24 @@ s32 cellHttpClientSetSslIdDestroyCallback()
return CELL_OK;
}
s32 cellHttpFlushCache()
{
UNIMPLEMENTED_FUNC(cellHttp);
return CELL_OK;
}
s32 cellHttpEndCache()
{
UNIMPLEMENTED_FUNC(cellHttp);
return CELL_OK;
}
s32 cellHttpInitCache()
{
UNIMPLEMENTED_FUNC(cellHttp);
return CELL_OK;
}
DECLARE(ppu_module_manager::cellHttp)("cellHttp", []()
{
REG_FUNC(cellHttp, cellHttpAuthCacheExport);
@ -826,6 +844,10 @@ DECLARE(ppu_module_manager::cellHttp)("cellHttp", []()
REG_FUNC(cellHttp, cellHttpClientSetSslVersion);
REG_FUNC(cellHttp, cellHttpClientGetSslVersion);
REG_FUNC(cellHttp, cellHttpClientSetSslIdDestroyCallback);
REG_FUNC(cellHttp, cellHttpFlushCache);
REG_FUNC(cellHttp, cellHttpEndCache);
REG_FUNC(cellHttp, cellHttpInitCache);
});
DECLARE(ppu_module_manager::cellHttps)("cellHttps", []()