calvados/paste_special.c

18 lines
252 B
C
Raw Permalink Normal View History

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