mirror of
https://github.com/softwarejanitor/calvados.git
synced 2025-01-14 17:31:06 +00:00
16 lines
197 B
C
16 lines
197 B
C
|
#include <gtk/gtk.h>
|
||
|
|
||
|
/*
|
||
|
*
|
||
|
* find()
|
||
|
*
|
||
|
* Find from the menu.
|
||
|
*
|
||
|
*/
|
||
|
void find(GtkWidget *widget, gpointer data)
|
||
|
{
|
||
|
/* --- Display message --- */
|
||
|
g_print("Find function goes here.\n");
|
||
|
}
|
||
|
|