| 824 | } |
| 825 | |
| 826 | Result SetSoundData(HSoundData sound_data, const void* sound_buffer, uint32_t sound_buffer_size) |
| 827 | { |
| 828 | DM_MUTEX_OPTIONAL_SCOPED_LOCK(g_SoundSystem->m_Mutex); |
| 829 | return SetSoundDataNoLock(sound_data, sound_buffer, sound_buffer_size); |
| 830 | } |
| 831 | |
| 832 | Result SetSoundDataCallback(HSoundData sound_data, FSoundDataGetData cbk, void* cbk_ctx) |
| 833 | { |
nothing calls this directly
no test coverage detected