summaryrefslogtreecommitdiff
path: root/sources/generated/Gst/DebugColorFlags.cs
blob: 3b7cfc9bb6c02925bf15f9012482cd8bdc318c19 (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
35
36
37
38
39
40
41
42
43
44
45
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.

namespace Gst {

	using System;
	using System.Runtime.InteropServices;

#region Autogenerated code
	[Flags]
	[GLib.GType (typeof (Gst.DebugColorFlagsGType))]
	public enum DebugColorFlags {

		FgBlack = 0,
		BgBlack = 0,
		FgRed = 1,
		FgGreen = 2,
		FgYellow = 3,
		FgBlue = 4,
		FgMagenta = 5,
		FgCyan = 6,
		FgWhite = 7,
		BgRed = 16,
		BgGreen = 32,
		BgYellow = 48,
		BgBlue = 64,
		BgMagenta = 80,
		BgCyan = 96,
		BgWhite = 112,
		Bold = 256,
		Underline = 512,
	}

	internal class DebugColorFlagsGType {
		[DllImport ("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern IntPtr gst_debug_color_flags_get_type ();

		public static GLib.GType GType {
			get {
				return new GLib.GType (gst_debug_color_flags_get_type ());
			}
		}
	}
#endregion
}