mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 04:11:31 +00:00
2d00f898fb
Making it cleaner and simpler to navigate and removing previous ugly and now useless hack where we were renaming files ourself to make meson happy.
27 lines
583 B
C#
27 lines
583 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace Gst.Audio {
|
|
|
|
using System;
|
|
|
|
#region Autogenerated code
|
|
public partial interface IStreamVolume : GLib.IWrapper {
|
|
|
|
double GetVolume(Gst.Audio.StreamVolumeFormat format);
|
|
void SetVolume(Gst.Audio.StreamVolumeFormat format, double val);
|
|
bool Mute {
|
|
get; set;
|
|
}
|
|
}
|
|
|
|
[GLib.GInterface (typeof (StreamVolumeAdapter))]
|
|
public partial interface IStreamVolumeImplementor : GLib.IWrapper {
|
|
|
|
[GLib.Property ("mute")]
|
|
bool Mute {
|
|
get; set;
|
|
}
|
|
}
|
|
#endregion
|
|
}
|