add sceImeUpdate stub

This commit is contained in:
martin 2024-09-03 17:33:41 -05:00
parent 0e17f74acd
commit 61ace7b1b7
4 changed files with 7 additions and 2 deletions

View File

@ -2934,7 +2934,6 @@ STUB("-431A-YBAks", llrint)
STUB(
"-464OnBCer0",
_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb)
STUB("-4GCfYdNF1s", sceImeUpdate)
STUB(
"-4KIDH4cF1U",
_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm)

View File

@ -2934,7 +2934,6 @@ STUB("-431A-YBAks", llrint)
STUB(
"-464OnBCer0",
_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb)
STUB("-4GCfYdNF1s", sceImeUpdate)
STUB(
"-4KIDH4cF1U",
_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm)

View File

@ -93,6 +93,11 @@ int PS4_SYSV_ABI sceImeDialogTerm() {
return ORBIS_OK;
}
int PS4_SYSV_ABI sceImeUpdate() {
return ORBIS_OK;
}
void RegisterlibSceImeDialog(Core::Loader::SymbolsResolver* sym) {
LIB_FUNCTION("oBmw4xrmfKs", "libSceImeDialog", 1, "libSceImeDialog", 1, 1, sceImeDialogAbort);
LIB_FUNCTION("bX4H+sxPI-o", "libSceImeDialog", 1, "libSceImeDialog", 1, 1,
@ -121,6 +126,7 @@ void RegisterlibSceImeDialog(Core::Loader::SymbolsResolver* sym) {
LIB_FUNCTION("-2WqB87KKGg", "libSceImeDialog", 1, "libSceImeDialog", 1, 1,
sceImeDialogSetPanelPosition);
LIB_FUNCTION("gyTyVn+bXMw", "libSceImeDialog", 1, "libSceImeDialog", 1, 1, sceImeDialogTerm);
LIB_FUNCTION("-4GCfYdNF1s", "libSceIme", 1, "libSceIme", 1, 1, sceImeUpdate);
};
} // namespace Libraries::ImeDialog

View File

@ -180,6 +180,7 @@ int PS4_SYSV_ABI sceImeDialogInitInternal2();
int PS4_SYSV_ABI sceImeDialogInitInternal3();
int PS4_SYSV_ABI sceImeDialogSetPanelPosition();
int PS4_SYSV_ABI sceImeDialogTerm();
int PS4_SYSV_ABI sceImeUpdate();
void RegisterlibSceImeDialog(Core::Loader::SymbolsResolver* sym);
} // namespace Libraries::ImeDialog