calvados/invert_selection.c

16 lines
245 B
C

#include <gtk/gtk.h>
/*
*
* invert_selection()
*
* Invert Selection from the menu.
*
*/
void invert_selection(GtkWidget *widget, gpointer data)
{
/* --- Display message --- */
g_print("Invert Selection function goes here.\n");
}