mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-09-08 09:54:50 +00:00
fbf7281338
Added a significant amount more of the UI code
17 lines
174 B
C
17 lines
174 B
C
#include <gtk/gtk.h>
|
|
|
|
#include "calvados.h"
|
|
|
|
/*
|
|
*
|
|
* test()
|
|
*
|
|
* Display test dialog
|
|
*
|
|
*/
|
|
void test(GtkWidget *widget, gpointer data)
|
|
{
|
|
g_print("test goes here\n");
|
|
}
|
|
|