diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs
index b371b66..1b7f613 100644
--- a/Raylib-cs/interop/Raylib.cs
+++ b/Raylib-cs/interop/Raylib.cs
@@ -2273,5 +2273,13 @@ namespace Raylib_cs
/// Detach audio stream processor from stream
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void DetachAudioStreamProcessor(AudioStream stream, 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);
+
+ /// Detach audio stream processor from the entire audio pipeline
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DetachAudioMixedProcessor(delegate* unmanaged[Cdecl] processor);
}
}