summaryrefslogtreecommitdiffstats
path: root/src/audio/oal/aldlist.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-05-24 00:06:19 +0200
committerSergeanur <s.anureev@yandex.ua>2020-05-24 00:06:19 +0200
commit7d30878418e037bcfda4121f59193e25a89c1824 (patch)
tree96fd3b0496898b09b0899e1cb9f40bab627906b7 /src/audio/oal/aldlist.h
parentEven more small audio cleanup (diff)
downloadre3-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.h11
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
{