mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-10-31 10:17:58 +00:00
24 lines
456 B
C
24 lines
456 B
C
|
#include <gtk/gtk.h>
|
||
|
#include <gdk/gdkkeysyms.h>
|
||
|
|
||
|
#include "calvados.h"
|
||
|
|
||
|
/*
|
||
|
*
|
||
|
* okfunc_volume_copier_open_volume()
|
||
|
*
|
||
|
* OK Function for volume copier open volume
|
||
|
*
|
||
|
* Show that the "OK" button was pressed
|
||
|
*
|
||
|
*/
|
||
|
void okfunc_volume_copier_open_volume(GtkWidget *widget, gpointer data)
|
||
|
{
|
||
|
/* --- Display message --- */
|
||
|
g_print("Volume copier select volume function goes here.\n");
|
||
|
|
||
|
/* --- Close it. --- */
|
||
|
gtk_widget_destroy(GTK_WIDGET(data));
|
||
|
}
|
||
|
|