mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-12-03 00:51:48 +00:00
18 lines
220 B
C
18 lines
220 B
C
#include <gtk/gtk.h>
|
|
|
|
#include "calvados.h"
|
|
|
|
/*
|
|
*
|
|
* paste()
|
|
*
|
|
* Paste from the menu.
|
|
*
|
|
*/
|
|
void paste(GtkWidget *widget, gpointer data)
|
|
{
|
|
/* --- Display message --- */
|
|
g_print("Paste function goes here.\n");
|
|
}
|
|
|