mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-09-11 12:55:31 +00:00
fbf7281338
Added a significant amount more of the UI code
16 lines
221 B
C
16 lines
221 B
C
#include <gtk/gtk.h>
|
|
|
|
/*
|
|
*
|
|
* close_menu_item()
|
|
*
|
|
* Close from the menu.
|
|
*
|
|
*/
|
|
void close_menu_item(GtkWidget *widget, gpointer data)
|
|
{
|
|
/* --- Display message --- */
|
|
g_print("Close function goes here.\n");
|
|
}
|
|
|