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