diff options
author | Chris Robinson <[email protected]> | 2011-08-20 06:31:10 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-20 06:31:10 -0700 |
commit | 7ea71d8bfaa7a05e329ab15ca8828cbc7fe7d00f (patch) | |
tree | 158199f0b742abbb4321313b5ea6f6aed3cb5dc9 /OpenAL32/Include/alSource.h | |
parent | 9b615a0adda64fa8cdb6c30c29909885300ee237 (diff) |
Use a separate function to set the source state
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 0f0eca7e..8906a9ac 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -129,6 +129,7 @@ typedef struct ALsource } ALsource; #define ALsource_Update(s,a) ((s)->Update(s,a)) +ALvoid SetSourceState(ALsource *Source, ALCcontext *Context, ALenum state); ALvoid ReleaseALSources(ALCcontext *Context); #ifdef __cplusplus |