Added the what's after the credits provider, with a simple (too simple!!) implementation.
[maevies] / src / main.c
index 728f85c..790dd5f 100644 (file)
@@ -23,6 +23,8 @@
 #include <stdlib.h>
 
 #include "localisation.h"
+#include "extra_scenes_provider.h"
+
 /* Defines to add the application to dbus and keep it running
  * Please do not modify "APP_NAME" (or other defines) to different name
  */
 
 static void button_clicked (GtkButton* button, gpointer data)
 {
+       if(has_stingers("Zombieland"))
+               printf("Movie has stingers\n");
+       else
+               printf("Movie doesn't have stingers\n");
     gtk_main_quit();
 }