mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-10-31 10:17:58 +00:00
19 lines
245 B
C
19 lines
245 B
C
|
#include <gtk/gtk.h>
|
||
|
#include <gdk/gdkkeysyms.h>
|
||
|
|
||
|
#include "calvados.h"
|
||
|
|
||
|
/*
|
||
|
*
|
||
|
* do_open_file()
|
||
|
*
|
||
|
* Open a file.
|
||
|
*
|
||
|
*/
|
||
|
void do_open_file(char *filename)
|
||
|
{
|
||
|
/* --- Display message --- */
|
||
|
g_print("Open file function goes here.\n");
|
||
|
}
|
||
|
|