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 import std.stdio; 28 import gstreamerc.gstinterfacestypes; 29 import gtkc.Loader; 30 import gtkc.paths; 31 32 shared static this() 33 { 34 // gstinterfaces.VideoOverlay 35 36 Linker.link(gst_video_overlay_get_type, "gst_video_overlay_get_type", LIBRARY.GSTINTERFACES); 37 Linker.link(gst_video_overlay_expose, "gst_video_overlay_expose", LIBRARY.GSTINTERFACES); 38 Linker.link(gst_video_overlay_got_window_handle, "gst_video_overlay_got_window_handle", LIBRARY.GSTINTERFACES); 39 Linker.link(gst_video_overlay_handle_events, "gst_video_overlay_handle_events", LIBRARY.GSTINTERFACES); 40 Linker.link(gst_video_overlay_prepare_window_handle, "gst_video_overlay_prepare_window_handle", LIBRARY.GSTINTERFACES); 41 Linker.link(gst_video_overlay_set_render_rectangle, "gst_video_overlay_set_render_rectangle", LIBRARY.GSTINTERFACES); 42 Linker.link(gst_video_overlay_set_window_handle, "gst_video_overlay_set_window_handle", LIBRARY.GSTINTERFACES); 43 } 44 45 __gshared extern(C) 46 { 47 48 // gstinterfaces.VideoOverlay 49 50 GType function() c_gst_video_overlay_get_type; 51 void function(GstVideoOverlay* overlay) c_gst_video_overlay_expose; 52 void function(GstVideoOverlay* overlay, size_t handle) c_gst_video_overlay_got_window_handle; 53 void function(GstVideoOverlay* overlay, int handleEvents) c_gst_video_overlay_handle_events; 54 void function(GstVideoOverlay* overlay) c_gst_video_overlay_prepare_window_handle; 55 int function(GstVideoOverlay* overlay, int x, int y, int width, int height) c_gst_video_overlay_set_render_rectangle; 56 void function(GstVideoOverlay* overlay, size_t handle) c_gst_video_overlay_set_window_handle; 57 } 58 59 60 // gstinterfaces.VideoOverlay 61 62 alias c_gst_video_overlay_get_type gst_video_overlay_get_type; 63 alias c_gst_video_overlay_expose gst_video_overlay_expose; 64 alias c_gst_video_overlay_got_window_handle gst_video_overlay_got_window_handle; 65 alias c_gst_video_overlay_handle_events gst_video_overlay_handle_events; 66 alias c_gst_video_overlay_prepare_window_handle gst_video_overlay_prepare_window_handle; 67 alias c_gst_video_overlay_set_render_rectangle gst_video_overlay_set_render_rectangle; 68 alias c_gst_video_overlay_set_window_handle gst_video_overlay_set_window_handle;