summaryrefslogtreecommitdiff
path: root/src/gui/splash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/splash.h')
-rw-r--r--src/gui/splash.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/gui/splash.h b/src/gui/splash.h
index cd9ec6c..0ad6cf1 100644
--- a/src/gui/splash.h
+++ b/src/gui/splash.h
@@ -1,6 +1,8 @@
#ifndef _GUI_SPLASH_H_
#define _GUI_SPLASH_H_
+
+#ifndef USE_GTK_3
#define E_MAKE_TYPE(l,str,t,ci,i,parent) \
GType l##_get_type(void)\
@@ -31,4 +33,13 @@ gboolean gui_splash_done(void);
void gui_splash_step(gchar *text, gdouble progress, gint step);
gboolean expose_event_callback (GtkWidget *widget, GdkEventExpose *event, gpointer data);
-#endif
+#else
+
+gboolean gui_splash_done(void);
+void gui_splash_step(gchar *text, gdouble progress, gint step);
+void gui_splash_init (void);
+
+#endif /* !USE_GTK_3 */
+
+
+#endif /* !_GUI_SPLASH_H_ */