mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 03:08:36 +12:00
46 lines
845 B
C++
46 lines
845 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
|
|
#include "sceIme.h"
|
|
|
|
s32 sceImeOpen(vm::psv::ptr<SceImeParam> param)
|
|
{
|
|
throw __FUNCTION__;
|
|
}
|
|
|
|
s32 sceImeUpdate()
|
|
{
|
|
throw __FUNCTION__;
|
|
}
|
|
|
|
s32 sceImeSetCaret(vm::psv::ptr<const SceImeCaret> caret)
|
|
{
|
|
throw __FUNCTION__;
|
|
}
|
|
|
|
s32 sceImeSetPreeditGeometry(vm::psv::ptr<const SceImePreeditGeometry> preedit)
|
|
{
|
|
throw __FUNCTION__;
|
|
}
|
|
|
|
s32 sceImeClose()
|
|
{
|
|
throw __FUNCTION__;
|
|
}
|
|
|
|
|
|
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceIme, #name, name)
|
|
|
|
psv_log_base sceIme("SceIme", []()
|
|
{
|
|
sceIme.on_load = nullptr;
|
|
sceIme.on_unload = nullptr;
|
|
sceIme.on_stop = nullptr;
|
|
|
|
REG_FUNC(0x0E050613, sceImeOpen);
|
|
REG_FUNC(0x71D6898A, sceImeUpdate);
|
|
REG_FUNC(0x889A8421, sceImeClose);
|
|
REG_FUNC(0xD8342D2A, sceImeSetCaret);
|
|
REG_FUNC(0x7B1EFAA5, sceImeSetPreeditGeometry);
|
|
});
|