| 139 | |
| 140 | |
| 141 | unsigned int Queue::getQueueCount() |
| 142 | { |
| 143 | unsigned int count; |
| 144 | mSoloud->lockAudioMutex(); |
| 145 | count = mCount; |
| 146 | mSoloud->unlockAudioMutex(); |
| 147 | return count; |
| 148 | } |
| 149 | |
| 150 | bool Queue::isCurrentlyPlaying(AudioSource &aSound) |
| 151 | { |
nothing calls this directly
no test coverage detected