calvados/help_func_select_volume.c
Leeland Heins fbf7281338 Update to current
Added a significant amount more of the UI code
2017-04-11 18:22:23 -05:00

27 lines
475 B
C

#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include "calvados.h"
/*
*
* help_func_select_volume()
*
* Help Function for select volume image
*
* Show that the "Help" button was pressed
*
*/
void help_func_select_volume(GtkWidget *widget, gpointer data)
{
/* --- Display message --- */
g_print("Help function for select volume goes here.\n");
/* --- Close it. --- */
gtk_widget_destroy(GTK_WIDGET(data));
/* Now open the help dialog */
/*FIXME*/
}