aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-11-24 17:43:20 -0800
committerChris Robinson <[email protected]>2013-11-24 17:43:20 -0800
commitb029b7778424a8573cbc4864a05bda40cb5ac78d (patch)
treece1874bb6b82b84874252de377f7df1e393d1526 /Alc
parent4830b1afe70afc3048e1da7ec3ce4edd2571f140 (diff)
Add some missing 'static's
Diffstat (limited to 'Alc')
-rw-r--r--Alc/backends/base.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Alc/backends/base.c b/Alc/backends/base.c
index d9ef3e99..fe797562 100644
--- a/Alc/backends/base.c
+++ b/Alc/backends/base.c
@@ -136,8 +136,8 @@ static void CaptureWrapper_close(CaptureWrapper *self);
static DECLARE_FORWARD(CaptureWrapper, ALCbackend, ALCboolean, reset)
static ALCboolean CaptureWrapper_start(CaptureWrapper *self);
static void CaptureWrapper_stop(CaptureWrapper *self);
-ALCenum CaptureWrapper_captureSamples(CaptureWrapper *self, void *buffer, ALCuint samples);
-ALCuint CaptureWrapper_availableSamples(CaptureWrapper *self);
+static ALCenum CaptureWrapper_captureSamples(CaptureWrapper *self, void *buffer, ALCuint samples);
+static ALCuint CaptureWrapper_availableSamples(CaptureWrapper *self);
static ALint64 CaptureWrapper_getLatency(CaptureWrapper *self);
static DECLARE_FORWARD(CaptureWrapper, ALCbackend, void, lock)
static DECLARE_FORWARD(CaptureWrapper, ALCbackend, void, unlock)
@@ -176,13 +176,13 @@ static void CaptureWrapper_stop(CaptureWrapper *self)
device->Funcs->StopCapture(device);
}
-ALCenum CaptureWrapper_captureSamples(CaptureWrapper *self, void *buffer, ALCuint samples)
+static ALCenum CaptureWrapper_captureSamples(CaptureWrapper *self, void *buffer, ALCuint samples)
{
ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
return device->Funcs->CaptureSamples(device, buffer, samples);
}
-ALCuint CaptureWrapper_availableSamples(CaptureWrapper *self)
+static ALCuint CaptureWrapper_availableSamples(CaptureWrapper *self)
{
ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
return device->Funcs->AvailableSamples(device);