| 1776 | } |
| 1777 | |
| 1778 | error_code cellAudioSetNotifyEventQueueEx(ppu_thread& ppu, u64 key, u32 iFlags) |
| 1779 | { |
| 1780 | ppu.state += cpu_flag::wait; |
| 1781 | |
| 1782 | cellAudio.todo("cellAudioSetNotifyEventQueueEx(key=0x%llx, iFlags=0x%x)", key, iFlags); |
| 1783 | |
| 1784 | if (iFlags & (~0u >> 5)) |
| 1785 | { |
| 1786 | return CELL_AUDIO_ERROR_PARAM; |
| 1787 | } |
| 1788 | |
| 1789 | return AudioSetNotifyEventQueue(ppu, key, iFlags); |
| 1790 | } |
| 1791 | |
| 1792 | error_code AudioRemoveNotifyEventQueue(u64 key, u32 iFlags) |
| 1793 | { |
nothing calls this directly
no test coverage detected