有没有办法在Windows XP及更高版本中获取完整的音频设备名称?
我可以使用mixerCAPS,但szPname成员将限制为32个字符(包括NULL).对于音频设备名称“麦克风(高清晰度音频设备)”,我只返回“麦克风(高清晰度Aud)”.这是由于MAXPNAMELEN被定义为32.我已经尝试将其重新定义为更大的数字而没有效果.
这是我正在使用的代码:
mixerCAPS mc; ZeroMemory( &mc,sizeof(mixerCAPS) ); mm = mixerGetDevCaps( reinterpret_cast<UINT_PTR>(m_hmixer),&mc,sizeof(mixerCAPS) );
我看到了this question,但它引用了Vista和更高版本.
如果您使用经典的Windows多媒体界面,您可能无法绕过MAXPNAMELEN限制,因为它已编译到Windows本身.
但是,如果使用DirectSound,则可能会获得完整的设备名称.以下代码未经测试,但我认为它应该可行.
BOOL CALLBACK EnumCallback(LPGUID guid,LPCSTR descr,LPCSTR modname,LPVOID ctx) { std::vector<std::string> *names = (std::vector<std::string>*)ctx; names->push_back(std::string(descr)); return TRUE; } int main() { std::vector<std::string> names; if (!Failed(DirectSoundEnumerate(&EnumCallback,&names))) { // do stuff } }