| 581 | } |
| 582 | |
| 583 | error_code cellMsgDialogOpenSimulViewWarning(vm::ptr<CellMsgDialogCallback> callback, vm::ptr<void> userData, vm::ptr<void> extParam) |
| 584 | { |
| 585 | cellSysutil.todo("cellMsgDialogOpenSimulViewWarning(callback=*0x%x, userData=*0x%x, extParam=*0x%x)", callback, userData, extParam); |
| 586 | |
| 587 | error_code ret = cellMsgDialogOpen2(CELL_MSGDIALOG_TYPE_SE_TYPE_NORMAL | CELL_MSGDIALOG_TYPE_BUTTON_TYPE_OK, vm::make_str("SimulView Warning"), callback, userData, extParam); |
| 588 | |
| 589 | // The dialog should ideally only be closeable by pressing ok after 3 seconds until it closes itself automatically after 5 seconds |
| 590 | if (ret == CELL_OK) |
| 591 | cellMsgDialogClose(5000.0f); |
| 592 | |
| 593 | return ret; |
| 594 | } |
| 595 | |
| 596 | error_code cellMsgDialogProgressBarSetMsg(u32 progressBarIndex, vm::cptr<char> msgString) |
| 597 | { |
nothing calls this directly
no test coverage detected