Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
miniaudio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
miniaudio
Commits
0277c5c0
Commit
0277c5c0
authored
May 07, 2019
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a couple of warnings.
parent
a82bb0a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
miniaudio.h
miniaudio.h
+6
-1
No files found.
miniaudio.h
View file @
0277c5c0
/*
/*
Audio playback and capture library. Choice of public domain or MIT-0. See license statements at the end of this file.
Audio playback and capture library. Choice of public domain or MIT-0. See license statements at the end of this file.
miniaudio (formerly mini_al) - v0.9.
4 - 2019-05-06
miniaudio (formerly mini_al) - v0.9.
5 - 2019-xx-xx
David Reid - davidreidsoftware@gmail.com
David Reid - davidreidsoftware@gmail.com
*/
*/
...
@@ -4587,6 +4587,7 @@ ma_handle ma_dlopen(ma_context* pContext, const char* filename)
...
@@ -4587,6 +4587,7 @@ ma_handle ma_dlopen(ma_context* pContext, const char* filename)
}
}
#endif
#endif
(void)pContext; /* It's possible for pContext to be unused. */
return handle;
return handle;
}
}
...
@@ -4634,6 +4635,7 @@ ma_proc ma_dlsym(ma_context* pContext, ma_handle handle, const char* symbol)
...
@@ -4634,6 +4635,7 @@ ma_proc ma_dlsym(ma_context* pContext, ma_handle handle, const char* symbol)
}
}
#endif
#endif
(void)pContext; /* It's possible for pContext to be unused. */
return proc;
return proc;
}
}
...
@@ -32949,6 +32951,9 @@ Device
...
@@ -32949,6 +32951,9 @@ Device
/*
/*
REVISION HISTORY
REVISION HISTORY
================
================
v0.9.5 - 2019-xx-xx
- Add logging to ma_dlopen() and ma_dlsym().
v0.9.4 - 2019-05-06
v0.9.4 - 2019-05-06
- Add support for C89. With this change, miniaudio should compile clean with GCC/Clang with "-std=c89 -ansi -pedantic" and
- Add support for C89. With this change, miniaudio should compile clean with GCC/Clang with "-std=c89 -ansi -pedantic" and
Microsoft copmilers back to VC6. Other compilers should also work, but have not been tested.
Microsoft copmilers back to VC6. Other compilers should also work, but have not been tested.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment