calvados/okfunc_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

24 lines
399 B
C

#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");
/* --- Close it. --- */
gtk_widget_destroy(GTK_WIDGET(data));
}