mirror of
https://github.com/softwarejanitor/calvados.git
synced 2025-01-02 13:31:12 +00:00
fbf7281338
Added a significant amount more of the UI code
24 lines
419 B
C
24 lines
419 B
C
#include <gtk/gtk.h>
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
#include "calvados.h"
|
|
|
|
/*
|
|
*
|
|
* extractunc_extract_files()
|
|
*
|
|
* Extract Function for extract files
|
|
*
|
|
* Show that the "Extract" button was pressed
|
|
*
|
|
*/
|
|
void extractfunc_extract_files(GtkWidget *widget, gpointer data)
|
|
{
|
|
/* --- Display message --- */
|
|
g_print("Extract function goes here.\n");
|
|
|
|
/* --- Close it. --- */
|
|
gtk_widget_destroy(GTK_WIDGET(data));
|
|
}
|
|
|