mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-09-09 15:54:43 +00:00
fbf7281338
Added a significant amount more of the UI code
18 lines
218 B
C
18 lines
218 B
C
#include <gtk/gtk.h>
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
#include "calvados.h"
|
|
|
|
/*
|
|
*
|
|
* save_to_file()
|
|
*
|
|
* Actually save data to a file
|
|
*
|
|
*/
|
|
void save_to_file(char *filename)
|
|
{
|
|
g_print("Save to file goes here.\n");
|
|
}
|
|
|