mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +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
|
|
@ -239,6 +239,12 @@ error_code cellOskDialogLoadAsync(u32 container, vm::ptr<CellOskDialogParam> dia
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellOskDialogLoadAsyncExt()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellOskDialog);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code getText(vm::ptr<CellOskDialogCallbackReturnParam> OutputInfo, bool is_unload)
|
||||
{
|
||||
if (!OutputInfo || OutputInfo->numCharsResultString < 0)
|
||||
|
|
@ -563,6 +569,7 @@ error_code cellOskDialogExtRegisterForceFinishCallback(vm::ptr<cellOskDialogForc
|
|||
void cellSysutil_OskDialog_init()
|
||||
{
|
||||
REG_FUNC(cellSysutil, cellOskDialogLoadAsync);
|
||||
REG_FUNC(cellSysutil, cellOskDialogLoadAsyncExt);
|
||||
REG_FUNC(cellSysutil, cellOskDialogUnloadAsync);
|
||||
REG_FUNC(cellSysutil, cellOskDialogGetSize);
|
||||
REG_FUNC(cellSysutil, cellOskDialogAbort);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue