[gthumb] [gstreamer_utils] added missing main.c file



commit 4b643cc712f5213328304ba566a194a64acc4474
Author: Paolo Bacchilega <paobac src gnome org>
Date:   Tue Feb 16 11:10:28 2010 +0100

    [gstreamer_utils] added missing main.c file

 .../gstreamer_tools.extension.in.in                |    2 +-
 extensions/gstreamer_utils/Makefile.am             |    3 +-
 extensions/gstreamer_utils/main.c                  |   51 ++++++++++++++++++++
 3 files changed, 54 insertions(+), 2 deletions(-)
---
diff --git a/extensions/gstreamer_tools/gstreamer_tools.extension.in.in b/extensions/gstreamer_tools/gstreamer_tools.extension.in.in
index a4920a4..6573788 100644
--- a/extensions/gstreamer_tools/gstreamer_tools.extension.in.in
+++ b/extensions/gstreamer_tools/gstreamer_tools.extension.in.in
@@ -2,7 +2,7 @@
 _Name=Audio/Video support
 _Description=Play audio and video files.
 _Authors=gthumb development team
-Copyright=Copyright © 2009 The Free Software Foundation, Inc.
+Copyright=Copyright © 2009-2010 The Free Software Foundation, Inc.
 Version=1.0
 Icon=video-x-generic
 
diff --git a/extensions/gstreamer_utils/Makefile.am b/extensions/gstreamer_utils/Makefile.am
index d38e6d5..b33edaa 100644
--- a/extensions/gstreamer_utils/Makefile.am
+++ b/extensions/gstreamer_utils/Makefile.am
@@ -7,7 +7,8 @@ libgstreamer_utils_la_SOURCES = 		\
 	gstreamer-utils.c			\
 	gstreamer-utils.h			\
 	gstscreenshot.c				\
-	gstscreenshot.h
+	gstscreenshot.h				\
+	main.c
 
 libgstreamer_utils_la_CPPFLAGS = $(GTHUMB_CFLAGS) $(GSTREAMER_CFLAGS) -I$(top_srcdir) -I$(top_builddir)/gthumb 
 libgstreamer_utils_la_LDFLAGS = $(EXTENSION_LIBTOOL_FLAGS)
diff --git a/extensions/gstreamer_utils/main.c b/extensions/gstreamer_utils/main.c
new file mode 100644
index 0000000..c79dff1
--- /dev/null
+++ b/extensions/gstreamer_utils/main.c
@@ -0,0 +1,51 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+
+/*
+ *  GThumb
+ *
+ *  Copyright (C) 2010 Free Software Foundation, Inc.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
+
+#include <config.h>
+#include <gtk/gtk.h>
+#include <gthumb.h>
+
+
+G_MODULE_EXPORT void
+gthumb_extension_activate (void)
+{
+}
+
+
+G_MODULE_EXPORT void
+gthumb_extension_deactivate (void)
+{
+}
+
+
+G_MODULE_EXPORT gboolean
+gthumb_extension_is_configurable (void)
+{
+	return FALSE;
+}
+
+
+G_MODULE_EXPORT void
+gthumb_extension_configure (GtkWindow *parent)
+{
+}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]