| 1826 | } |
| 1827 | |
| 1828 | error_code cellAudioRemoveNotifyEventQueueEx(u64 key, u32 iFlags) |
| 1829 | { |
| 1830 | cellAudio.todo("cellAudioRemoveNotifyEventQueueEx(key=0x%llx, iFlags=0x%x)", key, iFlags); |
| 1831 | |
| 1832 | if (iFlags & (~0u >> 5)) |
| 1833 | { |
| 1834 | return CELL_AUDIO_ERROR_PARAM; |
| 1835 | } |
| 1836 | |
| 1837 | return AudioRemoveNotifyEventQueue(key, iFlags); |
| 1838 | } |
| 1839 | |
| 1840 | error_code cellAudioAddData(u32 portNum, vm::ptr<float> src, u32 samples, float volume) |
| 1841 | { |
nothing calls this directly
no test coverage detected