aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/dsound.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-05-21 21:28:27 -0700
committerChris Robinson <[email protected]>2011-05-21 21:28:27 -0700
commit4d7aab1df42084a37cc7cda3b01b9fcc1f5ab360 (patch)
treee330d2cf2b1a4dafaaddaeca96083100ae5591cf /Alc/dsound.c
parentc3cbfecbaebcbfeb867a3918b67afe825b030925 (diff)
Make some declarations static or static const
Diffstat (limited to 'Alc/dsound.c')
-rw-r--r--Alc/dsound.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/dsound.c b/Alc/dsound.c
index ca39d193..7ef49729 100644
--- a/Alc/dsound.c
+++ b/Alc/dsound.c
@@ -73,7 +73,7 @@ static DevMap *DeviceList;
static ALuint NumDevices;
-void *DSoundLoad(void)
+static void *DSoundLoad(void)
{
if(!ds_handle)
{
@@ -538,7 +538,7 @@ static ALCuint DSoundAvailableSamples(ALCdevice *pDevice)
}
-BackendFuncs DSoundFuncs = {
+static const BackendFuncs DSoundFuncs = {
DSoundOpenPlayback,
DSoundClosePlayback,
DSoundResetPlayback,