summaryrefslogtreecommitdiff
path: root/sources/generated/Gst.Video/IVideoOrientation.cs
blob: 5b5cd1ec4436f8d401af401c6621e21db21759e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.

namespace Gst.Video {

	using System;

#region Autogenerated code
	public partial interface IVideoOrientation : GLib.IWrapper {

		bool GetHcenter(out int center);
		bool GetHflip(out bool flip);
		bool GetVcenter(out int center);
		bool GetVflip(out bool flip);
		bool SetHcenter(int center);
		bool SetHflip(bool flip);
		bool SetVcenter(int center);
		bool SetVflip(bool flip);
	}

	[GLib.GInterface (typeof (VideoOrientationAdapter))]
	public partial interface IVideoOrientationImplementor : GLib.IWrapper {

		bool GetHflip (out bool flip);
		bool GetVflip (out bool flip);
		bool GetHcenter (out int center);
		bool GetVcenter (out int center);
		bool SetHflip (bool flip);
		bool SetVflip (bool flip);
		bool SetHcenter (int center);
		bool SetVcenter (int center);
	}
#endregion
}