diff options
author | Chris Robinson <[email protected]> | 2013-11-04 13:44:46 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-11-04 13:44:46 -0800 |
commit | d3c70e63b4a42c92f8229f3c9e7f21a2048b6b9d (patch) | |
tree | 31b5ca98a42f4d1e51d0fd76bf7040a1c2e8da44 /Alc/ALc.c | |
parent | 551f893ae910c2b1b72c0a22aeab1ede75d3e5ed (diff) |
Use C99 inline in more places
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1274,6 +1274,7 @@ const ALCchar *DevFmtChannelsString(enum DevFmtChannels chans) return "(unknown channels)"; } +extern inline ALuint FrameSizeFromDevFmt(enum DevFmtChannels chans, enum DevFmtType type); ALuint BytesFromDevFmt(enum DevFmtType type) { switch(type) @@ -1415,6 +1416,9 @@ void ALCdevice_Unlock(ALCdevice *device) V0(device->Backend,unlock)(); } +extern inline void LockContext(ALCcontext *context); +extern inline void UnlockContext(ALCcontext *context); + /* SetDefaultWFXChannelOrder * |