diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-05-24 00:06:19 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-05-24 00:06:19 +0200 |
commit | 7d30878418e037bcfda4121f59193e25a89c1824 (patch) | |
tree | 96fd3b0496898b09b0899e1cb9f40bab627906b7 /src/audio/oal/aldlist.h | |
parent | Even more small audio cleanup (diff) | |
download | re3-7d30878418e037bcfda4121f59193e25a89c1824.tar re3-7d30878418e037bcfda4121f59193e25a89c1824.tar.gz re3-7d30878418e037bcfda4121f59193e25a89c1824.tar.bz2 re3-7d30878418e037bcfda4121f59193e25a89c1824.tar.lz re3-7d30878418e037bcfda4121f59193e25a89c1824.tar.xz re3-7d30878418e037bcfda4121f59193e25a89c1824.tar.zst re3-7d30878418e037bcfda4121f59193e25a89c1824.zip |
Diffstat (limited to 'src/audio/oal/aldlist.h')
-rw-r--r-- | src/audio/oal/aldlist.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/audio/oal/aldlist.h b/src/audio/oal/aldlist.h index 694c9d01..3afa6bfe 100644 --- a/src/audio/oal/aldlist.h +++ b/src/audio/oal/aldlist.h @@ -8,15 +8,20 @@ #include <vector> #include <string> -typedef struct -{ +struct ALDEVICEINFO { std::string strDeviceName; int iMajorVersion; int iMinorVersion; unsigned int uiSourceCount; std::vector<std::string> *pvstrExtensions; bool bSelected; -} ALDEVICEINFO, *LPALDEVICEINFO; + + ALDEVICEINFO() : iMajorVersion(0), iMinorVersion(0), uiSourceCount(0), pvstrExtensions(NULL), bSelected(false) + { + } +}; + +typedef ALDEVICEINFO *LPALDEVICEINFO; class ALDeviceList { |