| 183 | } |
| 184 | |
| 185 | void CddaDataModel::StopWindowThread() { |
| 186 | Lock lock(this->windowMutex); |
| 187 | |
| 188 | if (this->windowThread) { |
| 189 | PostMessage(this->messageWindow, WM_QUIT, 0, 0); |
| 190 | this->windowThread->join(); |
| 191 | this->windowThread.reset(); |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | std::vector<AudioDiscPtr> CddaDataModel::GetAudioDiscs() { |
| 196 | std::vector<AudioDiscPtr> result; |
no test coverage detected