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.VideoOverlay
39 
40 	Linker.link(gst_video_overlay_got_window_handle, \"gst_video_overlay_got_window_handle\", LIBRARY.GSTINTERFACES);
41 	Linker.link(gst_video_overlay_set_window_handle, \"gst_video_overlay_set_window_handle\", LIBRARY.GSTINTERFACES);
42 	Linker.link(gst_video_overlay_prepare_window_handle, \"gst_video_overlay_prepare_window_handle\", LIBRARY.GSTINTERFACES);
43 	Linker.link(gst_video_overlay_expose, \"gst_video_overlay_expose\", LIBRARY.GSTINTERFACES);
44 	Linker.link(gst_video_overlay_handle_events, \"gst_video_overlay_handle_events\", LIBRARY.GSTINTERFACES);
45 	Linker.link(gst_video_overlay_set_render_rectangle, \"gst_video_overlay_set_render_rectangle\", LIBRARY.GSTINTERFACES);
46 	Linker.link(gst_is_video_overlay_prepare_window_handle_message, \"gst_is_video_overlay_prepare_window_handle_message\", LIBRARY.GSTINTERFACES);
47 }");
48 
49 mixin( gshared ~"extern(C)
50 {
51 	// gstinterfaces.VideoOverlay
52 
53 	void function(GstVideoOverlay* overlay, guintptr handle) c_gst_video_overlay_got_window_handle;
54 	void function(GstVideoOverlay* overlay, guintptr handle) c_gst_video_overlay_set_window_handle;
55 	void function(GstVideoOverlay* overlay) c_gst_video_overlay_prepare_window_handle;
56 	void function(GstVideoOverlay* overlay) c_gst_video_overlay_expose;
57 	void function(GstVideoOverlay* overlay, gboolean handleEvents) c_gst_video_overlay_handle_events;
58 	gboolean function(GstVideoOverlay* overlay, gint x, gint y, gint width, gint height) c_gst_video_overlay_set_render_rectangle;
59 	gboolean function(GstMessage* msg) c_gst_is_video_overlay_prepare_window_handle_message;
60 }");
61 
62 // gstinterfaces.VideoOverlay
63 
64 alias c_gst_video_overlay_got_window_handle  gst_video_overlay_got_window_handle;
65 alias c_gst_video_overlay_set_window_handle  gst_video_overlay_set_window_handle;
66 alias c_gst_video_overlay_prepare_window_handle  gst_video_overlay_prepare_window_handle;
67 alias c_gst_video_overlay_expose  gst_video_overlay_expose;
68 alias c_gst_video_overlay_handle_events  gst_video_overlay_handle_events;
69 alias c_gst_video_overlay_set_render_rectangle  gst_video_overlay_set_render_rectangle;
70 alias c_gst_is_video_overlay_prepare_window_handle_message  gst_is_video_overlay_prepare_window_handle_message;