| 8 | #pragma comment(lib, "Dsound.lib") |
| 9 | |
| 10 | std::wstring DirectSoundAPI::DirectSoundDeviceDescription::GetIdentifier() const |
| 11 | { |
| 12 | return m_guid ? WStringFromGUID(*m_guid) : L"default"; |
| 13 | } |
| 14 | |
| 15 | DirectSoundAPI::DirectSoundAPI(GUID* guid, sint32 samplerate, sint32 channels, sint32 samples_per_block, sint32 bits_per_sample) |
| 16 | : IAudioAPI(samplerate, channels, samples_per_block, bits_per_sample) |
no test coverage detected