calvados/select_all.c

18 lines
240 B
C
Raw Permalink Normal View History

#include <gtk/gtk.h>
2017-04-18 19:15:24 +00:00
#include "calvados.h"
/*
*
* select_all()
*
* Select All from the menu.
*
*/
void select_all(GtkWidget *widget, gpointer data)
{
2017-04-18 19:15:24 +00:00
/* --- Display message --- */
g_print("Select All function goes here.\n");
}