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

@ -1,12 +1,10 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
#include "cellCelpEnc.h"
LOG_CHANNEL(cellCelpEnc);
s32 cellCelpEncQueryAttr()
{
UNIMPLEMENTED_FUNC(cellCelpEnc);
@ -25,6 +23,12 @@ s32 cellCelpEncOpenEx()
return CELL_OK;
}
s32 cellCelpEncOpenExt()
{
UNIMPLEMENTED_FUNC(cellCelpEnc);
return CELL_OK;
}
s32 cellCelpEncClose()
{
UNIMPLEMENTED_FUNC(cellCelpEnc);
@ -66,6 +70,7 @@ DECLARE(ppu_module_manager::cellCelpEnc)("cellCelpEnc", []()
REG_FUNC(cellCelpEnc, cellCelpEncQueryAttr);
REG_FUNC(cellCelpEnc, cellCelpEncOpen);
REG_FUNC(cellCelpEnc, cellCelpEncOpenEx);
REG_FUNC(cellCelpEnc, cellCelpEncOpenExt);
REG_FUNC(cellCelpEnc, cellCelpEncClose);
REG_FUNC(cellCelpEnc, cellCelpEncStart);
REG_FUNC(cellCelpEnc, cellCelpEncEnd);

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", []()

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
LOG_CHANNEL(sceNpMatchingInt);
@ -30,6 +29,12 @@ s32 sceNpMatchingJoinRoomGUI(vm::ptr<void> unknown)
return CELL_OK;
}
s32 sceNpMatchingSetRoomInfoNoLimit(vm::ptr<void> unknown)
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
s32 sceNpMatchingGetRoomListWithoutGUI()
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
@ -42,6 +47,12 @@ s32 sceNpMatchingGetRoomListGUI()
return CELL_OK;
}
s32 sceNpMatchingGetRoomInfoNoLimit(vm::ptr<void> unknown)
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
s32 sceNpMatchingCancelRequestGUI()
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
@ -66,8 +77,10 @@ DECLARE(ppu_module_manager::sceNpMatchingInt)("sceNpMatchingInt", []()
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomMemberList);
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomWithoutGUI);
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomGUI);
REG_FUNC(sceNpMatchingInt, sceNpMatchingSetRoomInfoNoLimit);
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListWithoutGUI);
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListGUI);
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomInfoNoLimit);
REG_FUNC(sceNpMatchingInt, sceNpMatchingCancelRequestGUI);
REG_FUNC(sceNpMatchingInt, sceNpMatchingSendRoomMessage);
REG_FUNC(sceNpMatchingInt, sceNpMatchingCreateRoomWithoutGUI);