check in skeletal ges-enums.{c,h}
authorBrandon Lewis <brandon@collabora.co.uk>
Thu, 1 Jul 2010 15:03:55 +0000 (17:03 +0200)
committerEdward Hervey <edward.hervey@collabora.co.uk>
Fri, 9 Jul 2010 11:21:15 +0000 (13:21 +0200)
ges/Makefile.am
ges/ges-enums.c [new file with mode: 0644]
ges/ges-enums.h [new file with mode: 0644]
ges/ges.h

index 6368461..7fd7510 100644 (file)
@@ -9,6 +9,7 @@ CLEANFILES = $(BUILT_SOURCES) $(built_header_make) $(built_source_make)
 
 libges_@GST_MAJORMINOR@_la_SOURCES =           \
        ges.c                                   \
+       ges-enums.c                                     \
        ges-custom-timeline-source.c            \
        ges-simple-timeline-layer.c             \
        ges-timeline.c                          \
@@ -40,6 +41,7 @@ libges_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/ges
 libges_@GST_MAJORMINOR@include_HEADERS =       \
        ges-types.h                             \
        ges.h                                   \
+       ges-enums.h                                     \
        ges-custom-timeline-source.h            \
        ges-internal.h                          \
        ges-simple-timeline-layer.h             \
diff --git a/ges/ges-enums.c b/ges/ges-enums.c
new file mode 100644 (file)
index 0000000..b5baf16
--- /dev/null
@@ -0,0 +1,21 @@
+/* GStreamer Editing Services
+ * Copyright (C) 2010 Brandon Lewis <brandon.lewis@collabora.co.uk>
+ *               2010 Nokia Corporation
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include "ges-enums.h"
diff --git a/ges/ges-enums.h b/ges/ges-enums.h
new file mode 100644 (file)
index 0000000..d9ab56d
--- /dev/null
@@ -0,0 +1,30 @@
+/* GStreamer Editing Services
+ * Copyright (C) 2010 Brandon Lewis <brandon.lewis@collabora.co.uk>
+ *               2010 Nokia Corporation
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GES_ENUMS_H__
+#define __GES_ENUMS_H__
+
+#include <glib.h>
+
+G_BEGIN_DECLS
+
+G_END_DECLS
+
+#endif /* __GES_ENUMS_H__ */
index 9e10fbd..46e34f8 100644 (file)
--- a/ges/ges.h
+++ b/ges/ges.h
@@ -25,6 +25,7 @@
 #include <gst/gst.h>
 
 #include <ges/ges-types.h>
+#include <ges/ges-enums.h>
 
 #include <ges/ges-timeline.h>
 #include <ges/ges-timeline-layer.h>