aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/winmm.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2015-05-18 16:39:44 -0700
committerChris Robinson <[email protected]>2015-05-18 16:39:44 -0700
commit9f49ac0fda04cc4bdc9e47a0d3c026722283c3a4 (patch)
treea5654bd758c2e7de5b58c50a8147541505f1b7bb /Alc/backends/winmm.c
parent9479ea656bd4c7d3059b63405237829296776c10 (diff)
Add a macro to simplify allocating and constructing an object
Diffstat (limited to 'Alc/backends/winmm.c')
-rw-r--r--Alc/backends/winmm.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/Alc/backends/winmm.c b/Alc/backends/winmm.c
index 03805ab8..e4ea151e 100644
--- a/Alc/backends/winmm.c
+++ b/Alc/backends/winmm.c
@@ -780,25 +780,15 @@ static ALCbackend* ALCwinmmBackendFactory_createBackend(ALCwinmmBackendFactory*
if(type == ALCbackend_Playback)
{
ALCwinmmPlayback *backend;
-
- backend = ALCwinmmPlayback_New(sizeof(*backend));
+ NEW_OBJ(backend, ALCwinmmPlayback)(device);
if(!backend) return NULL;
- memset(backend, 0, sizeof(*backend));
-
- ALCwinmmPlayback_Construct(backend, device);
-
return STATIC_CAST(ALCbackend, backend);
}
if(type == ALCbackend_Capture)
{
ALCwinmmCapture *backend;
-
- backend = ALCwinmmCapture_New(sizeof(*backend));
+ NEW_OBJ(backend, ALCwinmmCapture)(device);
if(!backend) return NULL;
- memset(backend, 0, sizeof(*backend));
-
- ALCwinmmCapture_Construct(backend, device);
-
return STATIC_CAST(ALCbackend, backend);
}