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
0433ac9e
Commit
0433ac9e
authored
Mar 21, 2023
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some warnings.
parent
0a19c744
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
miniaudio.h
miniaudio.h
+5
-5
No files found.
miniaudio.h
View file @
0433ac9e
...
...
@@ -3799,7 +3799,7 @@ typedef double ma_double;
typedef void* ma_handle;
typedef void* ma_ptr;
typedef void
(* ma_proc)(void)
;
typedef void
* ma_proc
;
#if defined(_MSC_VER) && !defined(_WCHAR_T_DEFINED)
typedef ma_uint16 wchar_t;
...
...
@@ -11773,7 +11773,7 @@ static MA_INLINE void ma_sleep(ma_uint32 milliseconds)
}
#endif
static MA_INLINE void ma_yield()
static MA_INLINE void ma_yield(
void
)
{
#if defined(__i386) || defined(_M_IX86) || defined(__x86_64__) || defined(_M_X64)
/* x86/x64 */
...
...
@@ -11808,7 +11808,7 @@ static MA_INLINE void ma_yield()
#define MA_MM_DENORMALS_ZERO_MASK 0x0040
#define MA_MM_FLUSH_ZERO_MASK 0x8000
static MA_INLINE unsigned int ma_disable_denormals()
static MA_INLINE unsigned int ma_disable_denormals(
void
)
{
unsigned int prevState;
...
...
@@ -41246,7 +41246,7 @@ MA_API ma_result ma_context_uninit(ma_context* pContext)
return MA_SUCCESS;
}
MA_API size_t ma_context_sizeof()
MA_API size_t ma_context_sizeof(
void
)
{
return sizeof(ma_context);
}
...
...
@@ -53646,7 +53646,7 @@ MA_API ma_result ma_channel_converter_get_output_channel_map(const ma_channel_co
Data Conversion
**************************************************************************************************************************************************************/
MA_API ma_data_converter_config ma_data_converter_config_init_default()
MA_API ma_data_converter_config ma_data_converter_config_init_default(
void
)
{
ma_data_converter_config config;
MA_ZERO_OBJECT(&config);
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