| 426 | } |
| 427 | |
| 428 | error_code cellMsgDialogOpen(u32 type, vm::cptr<char> msgString, vm::ptr<CellMsgDialogCallback> callback, vm::ptr<void> userData, vm::ptr<void> extParam) |
| 429 | { |
| 430 | // Note: This function needs proper implementation, solve first argument "type" conflict with MsgDialogOpen2 in cellMsgDialog.h. |
| 431 | cellSysutil.todo("cellMsgDialogOpen(type=0x%x, msgString=%s, callback=*0x%x, userData=*0x%x, extParam=*0x%x)", type, msgString, callback, userData, extParam); |
| 432 | return cellMsgDialogOpen2(type, msgString, callback, userData, extParam); |
| 433 | } |
| 434 | |
| 435 | error_code cellMsgDialogOpenErrorCode(u32 errorCode, vm::ptr<CellMsgDialogCallback> callback, vm::ptr<void> userData, vm::ptr<void> extParam) |
| 436 | { |
nothing calls this directly
no test coverage detected