mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-10-31 10:17:58 +00:00
27 lines
467 B
C
27 lines
467 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 goes here.\n");
|
||
|
|
||
|
/* --- Close it. --- */
|
||
|
gtk_widget_destroy(GTK_WIDGET(data));
|
||
|
|
||
|
/* Now open the help dialog */
|
||
|
/*FIXME*/
|
||
|
}
|
||
|
|