@@ -3799,7 +3799,7 @@ typedef double ma_double;
3799
3799
3800
3800
typedef void* ma_handle;
3801
3801
typedef void* ma_ptr;
3802
- typedef void ( * ma_proc)(void) ;
3802
+ typedef void* ma_proc;
3803
3803
3804
3804
#if defined(_MSC_VER) && !defined(_WCHAR_T_DEFINED)
3805
3805
typedef ma_uint16 wchar_t;
@@ -11773,7 +11773,7 @@ static MA_INLINE void ma_sleep(ma_uint32 milliseconds)
11773
11773
}
11774
11774
#endif
11775
11775
11776
- static MA_INLINE void ma_yield()
11776
+ static MA_INLINE void ma_yield(void )
11777
11777
{
11778
11778
#if defined(__i386) || defined(_M_IX86) || defined(__x86_64__) || defined(_M_X64)
11779
11779
/* x86/x64 */
@@ -11808,7 +11808,7 @@ static MA_INLINE void ma_yield()
11808
11808
#define MA_MM_DENORMALS_ZERO_MASK 0x0040
11809
11809
#define MA_MM_FLUSH_ZERO_MASK 0x8000
11810
11810
11811
- static MA_INLINE unsigned int ma_disable_denormals()
11811
+ static MA_INLINE unsigned int ma_disable_denormals(void )
11812
11812
{
11813
11813
unsigned int prevState;
11814
11814
@@ -41246,7 +41246,7 @@ MA_API ma_result ma_context_uninit(ma_context* pContext)
41246
41246
return MA_SUCCESS;
41247
41247
}
41248
41248
41249
- MA_API size_t ma_context_sizeof()
41249
+ MA_API size_t ma_context_sizeof(void )
41250
41250
{
41251
41251
return sizeof(ma_context);
41252
41252
}
@@ -53646,7 +53646,7 @@ MA_API ma_result ma_channel_converter_get_output_channel_map(const ma_channel_co
53646
53646
Data Conversion
53647
53647
53648
53648
**************************************************************************************************************************************************************/
53649
- MA_API ma_data_converter_config ma_data_converter_config_init_default()
53649
+ MA_API ma_data_converter_config ma_data_converter_config_init_default(void )
53650
53650
{
53651
53651
ma_data_converter_config config;
53652
53652
MA_ZERO_OBJECT(&config);
0 commit comments