1 /*
2  * This file is part of gtkD.
3  *
4  * gtkD is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 3
7  * of the License, or (at your option) any later version, with
8  * some exceptions, please read the COPYING file.
9  *
10  * gtkD is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with gtkD; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
18  */
19  
20 // generated automatically - do not change
21 // find conversion definition on APILookup.txt
22 // implement new conversion functionalities on the wrap.utils pakage
23 
24 
25 module gstreamerc.gstinterfaces;
26 
27 version(Tango)
28 	private import tango.stdc.stdio;
29 else
30 	private import std.stdio;
31 
32 private import gstreamerc.gstinterfacestypes;
33 private import gtkc.Loader;
34 private import gtkc.paths;
35 
36 mixin( _shared ~ "static this()
37 {
38 	// gstinterfaces.XOverlay
39 
40 	Linker.link(gst_x_overlay_set_xwindow_id, \"gst_x_overlay_set_xwindow_id\", LIBRARY.GSTINTERFACES);
41 	Linker.link(gst_x_overlay_got_xwindow_id, \"gst_x_overlay_got_xwindow_id\", LIBRARY.GSTINTERFACES);
42 	Linker.link(gst_x_overlay_prepare_xwindow_id, \"gst_x_overlay_prepare_xwindow_id\", LIBRARY.GSTINTERFACES);
43 	Linker.link(gst_x_overlay_expose, \"gst_x_overlay_expose\", LIBRARY.GSTINTERFACES);
44 	Linker.link(gst_x_overlay_handle_events, \"gst_x_overlay_handle_events\", LIBRARY.GSTINTERFACES);
45 }");
46 
47 mixin( gshared ~"extern(C)
48 {
49 	// gstinterfaces.XOverlay
50 
51 	void function(GstXOverlay* overlay, gulong xwindowId) c_gst_x_overlay_set_xwindow_id;
52 	void function(GstXOverlay* overlay, gulong xwindowId) c_gst_x_overlay_got_xwindow_id;
53 	void function(GstXOverlay* overlay) c_gst_x_overlay_prepare_xwindow_id;
54 	void function(GstXOverlay* overlay) c_gst_x_overlay_expose;
55 	void function(GstXOverlay* overlay, gboolean handleEvents) c_gst_x_overlay_handle_events;
56 }");
57 
58 // gstinterfaces.XOverlay
59 
60 alias c_gst_x_overlay_set_xwindow_id  gst_x_overlay_set_xwindow_id;
61 alias c_gst_x_overlay_got_xwindow_id  gst_x_overlay_got_xwindow_id;
62 alias c_gst_x_overlay_prepare_xwindow_id  gst_x_overlay_prepare_xwindow_id;
63 alias c_gst_x_overlay_expose  gst_x_overlay_expose;
64 alias c_gst_x_overlay_handle_events  gst_x_overlay_handle_events;