calvados/okfunc_select_volume.c

24 lines
399 B
C
Raw Permalink Normal View History

2017-03-14 04:04:47 +00:00
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include "calvados.h"
/*
*
* okfunc_select_volume()
*
* OK Function for select volume
*
* Show that the "OK" button was pressed
*
*/
void okfunc_select_volume(GtkWidget *widget, gpointer data)
{
/* --- Display message --- */
g_print("Create function 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
}