diff options
author | Chris Robinson <[email protected]> | 2022-03-31 05:20:16 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-03-31 05:20:16 -0700 |
commit | d91b68ef8ee57bcda7cda37a374e984a1a4245b3 (patch) | |
tree | af69bf32819fe65089060ea0e10a76d921856972 /al/source.cpp | |
parent | abfb584f1493b6295093a73235f1cea77ec15575 (diff) |
Avoid some explicit extern "C"s on function definitions
Diffstat (limited to 'al/source.cpp')
-rw-r--r-- | al/source.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/source.cpp b/al/source.cpp index dee4af2a..d2ccfe08 100644 --- a/al/source.cpp +++ b/al/source.cpp @@ -3580,7 +3580,7 @@ START_API_FUNC END_API_FUNC -extern "C" AL_API void AL_APIENTRY alSourceQueueBufferLayersSOFT(ALuint, ALsizei, const ALuint*) +AL_API void AL_APIENTRY alSourceQueueBufferLayersSOFT(ALuint, ALsizei, const ALuint*) START_API_FUNC { ContextRef context{GetContextRef()}; |