calvados/paste.c

18 lines
220 B
C
Raw Permalink Normal View History

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