| 71 | } |
| 72 | |
| 73 | unsigned int CDSampleManager::GetFirstFree() const |
| 74 | { |
| 75 | for (size_t i = 0; i < MAX_DSAMPLES; ++i) |
| 76 | if (!m_pDSample[i]) |
| 77 | return i; |
| 78 | return -1; |
| 79 | } |
| 80 | |
| 81 | unsigned int CDSampleManager::GetTotalSize() const |
| 82 | { |
no outgoing calls
no test coverage detected