mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
28 lines
583 B
C#
28 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
|
||
|
}
|