diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs index 77656d5..470992d 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -2655,33 +2655,33 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamCallback( AudioStream stream, - delegate* unmanaged[Cdecl] callback + delegate* unmanaged[Cdecl] callback ); /// Attach audio stream processor to stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void AttachAudioStreamProcessor( AudioStream stream, - delegate* unmanaged[Cdecl] processor + delegate* unmanaged[Cdecl] processor ); /// Detach audio stream processor from stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DetachAudioStreamProcessor( AudioStream stream, - delegate* unmanaged[Cdecl] processor + delegate* unmanaged[Cdecl] processor ); /// Attach audio stream processor to the entire audio pipeline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void AttachAudioMixedProcessor( - delegate* unmanaged[Cdecl] processor + delegate* unmanaged[Cdecl] processor ); /// Detach audio stream processor from the entire audio pipeline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DetachAudioMixedProcessor( - delegate* unmanaged[Cdecl] processor + delegate* unmanaged[Cdecl] processor ); } }