aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-03-23 17:44:01 -0700
committerChris Robinson <[email protected]>2010-03-23 17:44:01 -0700
commit3e9934e810f18c8336665a1b057672aabf6d1e2a (patch)
tree58bb6fd7f441a89befa9b4ad67f4b8a76c9ccd69 /Alc/ALc.c
parent556e9b8fee160febfffc591bb9e2efb881850252 (diff)
Mark extension functions with AL_API/ALC_API
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index f4a8bfd8..086b6f29 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1466,7 +1466,7 @@ ALC_API ALCcontext* ALC_APIENTRY alcGetCurrentContext(ALCvoid)
Returns the currently active thread-local Context
*/
-ALCcontext* ALC_APIENTRY alcGetThreadContext(void)
+ALC_API ALCcontext* ALC_APIENTRY alcGetThreadContext(void)
{
ALCcontext *pContext = NULL;
@@ -1556,7 +1556,7 @@ ALC_API ALCboolean ALC_APIENTRY alcMakeContextCurrent(ALCcontext *context)
Makes the given Context the active Context for the current thread
*/
-ALCboolean ALC_APIENTRY alcMakeCurrent(ALCcontext *context)
+ALC_API ALCboolean ALC_APIENTRY alcMakeCurrent(ALCcontext *context)
{
ALboolean bReturn = AL_TRUE;