calvados/help_func_create_disk_image.c

27 lines
486 B
C
Raw Normal View History

2017-03-14 04:04:47 +00:00
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include "calvados.h"
/*
*
* help_func_create_disk_image()
*
* Help Function for create disk image
*
* Show that the "Help" button was pressed
*
*/
void help_func_create_disk_image(GtkWidget *widget, gpointer data)
{
/* --- Display message --- */
g_print("Help function for create disk images goes here.\n");
2017-03-14 04:04:47 +00:00
/* --- Close it. --- */
gtk_widget_destroy(GTK_WIDGET(data));
2017-03-14 04:04:47 +00:00
/* Now open the help dialog */
2017-03-14 04:04:47 +00:00
/*FIXME*/
}